UNPKG

tubular-common

Version:

Tubular Common Models and Data Transformer

13 lines (10 loc) 343 B
import type { ColumnModel } from '../Models'; interface DataGridStorage { setTextSearch: (textSearch: string) => void; setPage: (page: number) => void; setColumns: (columns: ColumnModel[]) => void; getTextSearch: () => string; getPage: () => number; getColumns: () => ColumnModel[]; } export default DataGridStorage;