@fe6/water-pro
Version:
An enterprise-class UI design language and Vue-based implementation
20 lines (19 loc) • 724 B
TypeScript
/** @format */
import type { SorterResult } from './types/table';
export declare const ROW_KEY = "key";
export declare const PAGE_SIZE_OPTIONS: string[];
export declare const PAGE_SIZE: number;
export declare const FETCH_SETTING: {
pageField: string;
sizeField: string;
listField: string;
totalField: string;
};
export declare const DEFAULT_SORT_FN: (sortInfo: SorterResult) => {
field: string;
order: import("./types/column").SortOrder;
};
export declare const DEFAULT_FILTER_FN: (data: Partial<Recordable<string[]>>) => Partial<Recordable<string[]>>;
export declare const DEFAULT_ALIGN = "left";
export declare const INDEX_COLUMN_FLAG = "INDEX";
export declare const ACTION_COLUMN_FLAG = "ACTION";