DefinitelyTyped/types/cli-truncate/index.d.ts
2018-08-28 16:45:36 -07:00

13 lines
382 B
TypeScript

// Type definitions for cli-truncate 1.1
// Project: https://github.com/sindresorhus/cli-truncate
// Definitions by: Daniel Byrne <https://github.com/danwbyrne>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = cliTruncate;
declare function cliTruncate(
input: string,
columns: number,
options?: {position?: 'start' | 'middle' | 'end'},
): string;