mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Added Edmonds-Blossom type * updated tsconfig * fixed tsconfig.json * added noEmit * added forceConsistentCasingInFileNames * fixed urls * fixed types * fixed lib * added tests * fixed tests * fixed test * added ts version * fix test
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/edmonds-blossom
|
|
// TypeScript Version: 2.7
|
|
export = blossom;
|
|
declare function blossom(edges: number[][], maxCardinality?: number): number[];
|