Skip to content

Commit 512ae4b

Browse files
author
François Wouts
authored
Add missing module declaration after namespace
This was inadvertently removed in 5bc6d65. This time, I have double checked that the declaration is functional from TypeScript. Sorry about the mix-up!
1 parent a12b317 commit 512ae4b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/jsgraphs.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,3 +250,7 @@ declare namespace JsGraphs {
250250
minCut(G: FlowNetwork): FlowEdge[];
251251
}
252252
}
253+
254+
declare module "js-graph-algorithms" {
255+
export = JsGraphs;
256+
}

0 commit comments

Comments
 (0)