mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +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
151 B
TypeScript
8 lines
151 B
TypeScript
import blossom from "edmonds-blossom";
|
|
const data = [
|
|
[0, 1, 6],
|
|
[0, 2, 10],
|
|
[1, 2, 5]
|
|
];
|
|
blossom(data); // $ExpectType number[]
|