You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
705 B

4 months ago
import { GraphData } from './types';
/**
* GADDI
* @param graphData
* @param pattern
* @param directed false
* @param k k k-
* @param length length
* @param nodeLabelProp cluster
* @param edgeLabelProp cluster
*/
declare const GADDI: (graphData: GraphData, pattern: GraphData, directed: boolean, k: number, length: number, nodeLabelProp?: string, edgeLabelProp?: string) => GraphData[];
export default GADDI;