mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 23:14:44 +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;
|