This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
irreligious/node_modules/table/dist/drawContent.d.ts

10 lines
350 B
TypeScript

declare type SeparatorConfig = {
drawSeparator: (index: number, size: number) => boolean;
separatorGetter: (index: number, size: number) => string;
};
/**
* Shared function to draw horizontal borders, rows or the entire table
*/
export declare const drawContent: (contents: string[], separatorConfig: SeparatorConfig) => string;
export {};