DefinitelyTyped/sprintf/sprintf.d.ts
2016-04-22 14:12:45 -07:00

11 lines
453 B
TypeScript

// Type definitions for sprintff
// Project: https://github.com/maritz/node-sprintff
// Definitions by: Carlos Ballesteros Velasco <https://github.com/soywiz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// Imported from: https://github.com/soywiz/typescript-node-definitions/sprintff.d.ts
declare export function sprintf(fmt: string, ...args: any[]): string;
declare export function vsprintf(fmt: string, args: any[]): string;