Spaces:
Build error
Build error
File size: 374 Bytes
c211499 |
1 2 3 4 5 6 7 8 9 10 11 |
export namespace arrows {
export { normal };
export { vee };
export { undirected };
}
export function setArrows(value: any): void;
declare function normal(parent: any, id: any, edge: any, type: any): void;
declare function vee(parent: any, id: any, edge: any, type: any): void;
declare function undirected(parent: any, id: any, edge: any, type: any): void;
export {};
|