projecte_ionic/node_modules/table/dist/drawContent.d.ts
2022-02-09 18:30:03 +01:00

9 lines
350 B
TypeScript
Executable file

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