@types/center-align
Version:
TypeScript definitions for center-align
11 lines (8 loc) • 422 B
TypeScript
// Type definitions for center-align 1.0
// Project: https://github.com/jonschlinkert/center-align
// Definitions by: Claas Ahlrichs <https://github.com/claasahl>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.7
declare function center_align(val: string, width?: number): string;
declare function center_align(val: string[], width?: number): string[];
export = center_align;