Add Node#id (#42893)

Add @types/graphviz Node#id

https://github.com/glejeune/node-graphviz/blob/eccd103/lib/deps/node.js#L17
This commit is contained in:
Luke Bennett 2020-03-27 17:18:41 +00:00 committed by GitHub
parent a844d96c97
commit 0f432e3ad0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,7 @@ export interface HasAttributes {
}
export interface Node extends HasAttributes {
id: string;
}
export interface Edge extends HasAttributes {