mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* npx dts-gen -m center-align --dt * drafted types for center-align * npx prettier --write .\types\center-align\** * fixed linting issues
11 lines
422 B
TypeScript
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;
|