DefinitelyTyped/types/right-align/index.d.ts
Claas Ahlrichs 3b226ddd59 new package: right-align (#34202)
* npx dts-gen -m right-align --dt

* drafted types for right-align

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

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

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;