const.ts 267 Bytes
export const ROW_KEY = 'key';

export const PAGE_SIZE_OPTIONS = ['10', '50', '80', '100'];

export const PAGE_SIZE = ~~PAGE_SIZE_OPTIONS[0];

export const FETCH_SETTING = {
  pageField: 'page',
  sizeField: 'pageSize',
  listField: 'items',
  totalField: 'total',
};