lerna
Version:
Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository
8 lines (7 loc) • 347 B
TypeScript
declare function alignLeft(str: string, width: number): string;
declare function alignRight(str: string, width: number): string;
declare function alignCenter(str: string, width: number): string;
export declare const left: typeof alignLeft;
export declare const right: typeof alignRight;
export declare const center: typeof alignCenter;
export {};