UNPKG

javascript-obfuscator

Version:
6 lines (5 loc) 196 B
export interface ILevelledTopologicalSorter<TValue extends string = string> { add(precedent: TValue, consequent?: TValue | null): this; sort(): TValue[]; sortByGroups(): TValue[][]; }