forked from sashin/sashinexists
8 lines
242 B
TypeScript
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 };
|