UNPKG

230 BTypeScriptView Raw
1/**
2 * Simple function for formatting strings.
3 *
4 * Replaces placeholders with values passed as extra arguments
5 */
6declare function sprintf(format: string, ...args: any[]): string;
7declare namespace sprintf {}
8export = sprintf;