UNPKG

422 BTypeScriptView Raw
1// Type definitions for center-align 1.0
2// Project: https://github.com/jonschlinkert/center-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 center_align(val: string, width?: number): string;
8declare function center_align(val: string[], width?: number): string[];
9
10export = center_align;