eslintwork/node_modules/table/dist/drawContent.d.ts
Martin Donnelly 9cbf1eea5b init
2021-06-24 09:26:17 +01:00

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 {};