mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-25 14:07:28 +00:00
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
declare module "graphlib" {
|
|
export = graphlib;
|
|
|
|
module graphlib {
|
|
export class Graph {
|
|
constructor();
|
|
hasNode(key: string): any;
|
|
node(key: string): any;
|
|
setNode(key: string, node: any): any;
|
|
}
|
|
}
|
|
}
|