Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pbjs.d.ts 363B

123456789
  1. type pbjsCallback = (err: Error|null, output?: string) => void;
  2. /**
  3. * Runs pbjs programmatically.
  4. * @param {string[]} args Command line arguments
  5. * @param {function(?Error, string=)} [callback] Optional completion callback
  6. * @returns {number|undefined} Exit code, if known
  7. */
  8. export function main(args: string[], callback?: pbjsCallback): number|undefined;