UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

8 lines (7 loc) 264 B
/** * Formats a string by replacing the placeholders with the specified parameters * @param {string} str The format string * @param {any[]} args The replacement strings * @return string */ export declare const format: (str: string, ...args: any[]) => string;