import { IsiGridLineTable } from "./isi-gridline-table"; import { IsiBorderTable } from "./isi-border-table"; import { IsiStripedTable } from "./isi-striped-table"; import { IsiConfigPaginatorTable } from "./isi-config-paginator-table"; export interface IsiConfigTable { tableStyle?: { [key: string]: string; }; gridLine?: IsiGridLineTable; border?: IsiBorderTable; striped?: IsiStripedTable; allData?: boolean; paginator?: IsiConfigPaginatorTable; }