7 lines
239 B
TypeScript
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;
|