@mail-core/cli
Version:
Инструментарий для написания cli-скриптов
9 lines (8 loc) • 318 B
TypeScript
export declare type ListOptions = {
bullet?: string;
indent?: number;
glue?: string;
fixedCol?: boolean | number;
};
export declare function getLengthOffset(val: string): number;
export declare function list(console: Pick<Console, 'log'>, items: Array<string | string[]>, options?: ListOptions): void;