mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-25 14:07:28 +00:00
Create a single source of typings by installing manually created typings with file: prefix.
14 lines
311 B
TypeScript
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;
|
|
}
|
|
}
|
|
}
|