mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* npx dts-gen -m right-align --dt * drafted types for right-align * npx prettier --write .\types\right-align\** * fixed linting issues
11 lines
385 B
TypeScript
11 lines
385 B
TypeScript
// Type definitions for right-align 0.1
|
|
// Project: https://github.com/jonschlinkert/right-align
|
|
// Definitions by: Claas Ahlrichs <https://github.com/claasahl>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.7
|
|
|
|
declare function right_align(val: string): string;
|
|
declare function right_align(val: string[]): string[];
|
|
|
|
export = right_align;
|