UNPKG

entropyx

Version:

A simple data mining library, written in TypeScript

11 lines (10 loc) 417 B
import { FastNewmanOptions } from '@/interfaces/fast-newman-options.interface'; import { FastNewmanResult } from '@/interfaces/fast-newman-result.interface'; export declare class FastNewman { private options; private history; constructor(options?: FastNewmanOptions); fit(adjacencyMatrix: number[][]): Promise<FastNewmanResult>; private computeInitialModularity; private extractCommunities; }