mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
declare module 'langium-cli' {
|
|
export interface GenerateOptions {
|
|
file?: string;
|
|
mode?: 'development' | 'production';
|
|
watch?: boolean;
|
|
}
|
|
|
|
export function generate(options: GenerateOptions): Promise<boolean>;
|
|
}
|