lwx-test-ui
Version:
lwx-test-ui
15 lines (14 loc) • 392 B
TypeScript
export interface TableProSearchFormContext {
isSearch: boolean;
}
export interface TableProColumn {
prop?: string;
label?: string;
align?: 'center' | 'left' | 'right';
overflowShow?: boolean;
minWidth?: number | string;
width?: number | string;
fixed?: boolean | string;
render?: (scope: any) => any;
}
export type TableProColumns = Array<TableProColumn>;