mirror of
				https://github.com/mermaid-js/mermaid.git
				synced 2025-11-04 04:44:08 +01: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>;
 | 
						|
}
 |