mirror of
				https://github.com/musix-org/musix-oss
				synced 2025-10-31 05:21:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			363 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			363 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| type pbjsCallback = (err: Error|null, output?: string) => void;
 | |
| 
 | |
| /**
 | |
|  * Runs pbjs programmatically.
 | |
|  * @param {string[]} args Command line arguments
 | |
|  * @param {function(?Error, string=)} [callback] Optional completion callback
 | |
|  * @returns {number|undefined} Exit code, if known
 | |
|  */
 | |
| export function main(args: string[], callback?: pbjsCallback): number|undefined;
 | 
