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

7 lines
239 B
TypeScript

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