DefinitelyTyped/types/center-align/index.d.ts
Claas Ahlrichs 964c481dfd new package: center-align (#34203)
* npx dts-gen -m center-align --dt

* drafted types for center-align

* npx prettier --write .\types\center-align\**

* fixed linting issues
2019-03-25 15:19:58 -07:00

11 lines
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;