mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
9 lines
315 B
TypeScript
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;
|