1
0
Files
sashinexists/node_modules/graphviz-wasm/dist/index.d.ts
2024-12-07 13:18:31 +11:00

8 lines
242 B
TypeScript

import type { Engine, Format } from './types';
declare const Graphviz: {
loadWASM: () => Promise<void>;
layout: (source: string, format?: Format, engine?: Engine) => string;
};
export default Graphviz;
export type { Engine, Format };