mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
453 B
TypeScript
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
|
|
|
|
|
|
export declare function sprintf(fmt: string, ...args: any[]): string;
|
|
export declare function vsprintf(fmt: string, args: any[]): string;
|