GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

2 months ago
  1. export = codegen;
  2. /**
  3. * Appends code to the function's body.
  4. * @param [formatStringOrScope] Format string or, to finish the function, an object of additional scope variables, if any
  5. * @param [formatParams] Format parameters
  6. * @returns Itself or the generated function if finished
  7. * @throws {Error} If format parameter counts do not match
  8. */
  9. type Codegen = (formatStringOrScope?: (string|{ [k: string]: any }), ...formatParams: any[]) => (Codegen|Function);
  10. /**
  11. * Begins generating a function.
  12. * @param functionParams Function parameter names
  13. * @param [functionName] Function name if not anonymous
  14. * @returns Appender that appends code to the function's body
  15. */
  16. declare function codegen(functionParams: string[], functionName?: string): Codegen;
  17. /**
  18. * Begins generating a function.
  19. * @param [functionName] Function name if not anonymous
  20. * @returns Appender that appends code to the function's body
  21. */
  22. declare function codegen(functionName?: string): Codegen;
  23. declare namespace codegen {
  24. /** When set to `true`, codegen will log generated code to console. Useful for debugging. */
  25. let verbose: boolean;
  26. }