DefinitelyTyped/types/pad-left/index.d.ts
Richie Bendall 349924fb34 feat: Add typings for pad-left (#41820)
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-01-24 16:26:22 -08:00

9 lines
315 B
TypeScript

// Type definitions for pad-left 2.1
// Project: https://github.com/jonschlinkert/pad-left
// Definitions by: Richie Bendall <https://github.com/Richienb>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function padLeft(str: string, num: number, ch?: string): string;
export = padLeft;