Last change
on this file since e29cc2e was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago |
adding photos
|
-
Property mode
set to
100644
|
File size:
509 bytes
|
Rev | Line | |
---|
[59329aa] | 1 | import { SortMeta } from './sortmeta';
|
---|
| 2 | import { FilterMetadata } from './filtermetadata';
|
---|
| 3 | export interface TableState {
|
---|
| 4 | first?: number;
|
---|
| 5 | rows?: number;
|
---|
| 6 | sortField?: string;
|
---|
| 7 | sortOrder?: number;
|
---|
| 8 | multiSortMeta?: SortMeta[];
|
---|
| 9 | filters?: {
|
---|
| 10 | [s: string]: FilterMetadata | FilterMetadata[];
|
---|
| 11 | };
|
---|
| 12 | columnWidths?: string;
|
---|
| 13 | tableWidth?: string;
|
---|
| 14 | wrapperWidth?: string;
|
---|
| 15 | selection?: any;
|
---|
| 16 | columnOrder?: string[];
|
---|
| 17 | expandedRowKeys?: {
|
---|
| 18 | [s: string]: boolean;
|
---|
| 19 | };
|
---|
| 20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.