dop-stick
Version:
Source control tooling for versionable-upgradeable smart contracts
8 lines • 403 B
TypeScript
export declare class TextFormat {
static truncate(text: string, length: number, suffix?: string): string;
static pad(text: string, length: number, char?: string): string;
static center(text: string, length: number, char?: string): string;
static indent(text: string, spaces?: number): string;
static wrap(text: string, width: number): string[];
}
//# sourceMappingURL=format.d.ts.map