Oscar Lorentzon 726e0b72a2 Install manually created typings.
Create a single source of typings by installing
manually created typings with file: prefix.
2016-02-29 17:22:42 +01:00

14 lines
311 B
TypeScript

declare module "graphlib" {
export = graphlib;
module graphlib {
export class Graph {
constructor();
constructor(params: any);
hasNode(key: string): any;
node(key: string): any;
setNode(key: string, node: any): any;
}
}
}