UNPKG

@crstrskp/graph

Version:

High-performance TypeScript graph algorithms library optimized for trading bots and arbitrage detection

10 lines 280 B
export interface IVertex { setLabel(s: string): any; getLabel(): string; getCost(): number; getId(): number; setCost(cost: number): any; setAttribute(key: string, value: any): any; getAttribute(key: string): any; } //# sourceMappingURL=IVertex.d.ts.map