mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-14 21:09:50 +02:00
12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
declare module '@zenuml/core' {
|
|
interface RenderOptions {
|
|
theme?: string;
|
|
mode?: string;
|
|
}
|
|
|
|
export default class ZenUml {
|
|
constructor(container: Element);
|
|
render(text: string, options?: RenderOptions): Promise<void>;
|
|
}
|
|
}
|