mc-pro-ui
Version:
一个功能强大的 Vue 3 UI 组件库,提供完整的 TypeScript 支持
29 lines (28 loc) • 651 B
TypeScript
export declare namespace Table {
interface Pageable {
pageNum: number;
pageSize: number;
total: number;
size: "default" | "small" | "large";
pageField?: string;
sizeField?: string;
totalField?: string;
listField?: string;
}
interface TableStateProps {
tableData: any[];
pageable: Pageable;
searchParam: {
[key: string]: any;
};
searchInitParam: {
[key: string]: any;
};
totalParam: {
[key: string]: any;
};
icon?: {
[key: string]: any;
};
}
}