mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
8 lines
360 B
TypeScript
8 lines
360 B
TypeScript
// Type definitions for edmonds-blossom 1.0
|
|
// Project: https://github.com/mattkrick/EdmondsBlossom
|
|
// Definitions by: John Jackson <https://github.com/johnridesabike>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.7
|
|
export = blossom;
|
|
declare function blossom(edges: number[][], maxCardinality?: number): number[];
|