mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-11 11:34:12 +08:00
9 lines
330 B
TypeScript
9 lines
330 B
TypeScript
// Type definitions for left-pad 1.1
|
|
// Project: https://github.com/stevemao/left-pad
|
|
// Definitions by: Zlatko Andonovski <https://github.com/Goldsmith42>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function leftPad(str: string|number, len: number, ch?: string|number): string;
|
|
|
|
export = leftPad;
|