UNPKG

385 BTypeScriptView Raw
1// Type definitions for right-align 0.1
2// Project: https://github.com/jonschlinkert/right-align
3// Definitions by: Claas Ahlrichs <https://github.com/claasahl>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5// TypeScript Version: 2.7
6
7declare function right_align(val: string): string;
8declare function right_align(val: string[]): string[];
9
10export = right_align;