mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-24 04:16:38 +08:00
25 lines
1.0 KiB
TypeScript
25 lines
1.0 KiB
TypeScript
declare namespace NaiveUI {
|
|
type ThemeColor = 'default' | 'error' | 'primary' | 'info' | 'success' | 'warning';
|
|
type Align = 'stretch' | 'baseline' | 'start' | 'end' | 'center' | 'flex-end' | 'flex-start';
|
|
|
|
type DataTableBaseColumn<T> = import('naive-ui').DataTableBaseColumn<T>;
|
|
type DataTableExpandColumn<T> = import('naive-ui').DataTableExpandColumn<T>;
|
|
type DataTableSelectionColumn<T> = import('naive-ui').DataTableSelectionColumn<T>;
|
|
type TableColumnGroup<T> = import('naive-ui/es/data-table/src/interface').TableColumnGroup<T>;
|
|
type TableColumnCheck = import('@sa/hooks').TableColumnCheck;
|
|
|
|
type SetTableColumnKey<C, T> = Omit<C, 'key'> & { key: keyof T | (string & {}) };
|
|
|
|
type TableColumnWithKey<T> = SetTableColumnKey<DataTableBaseColumn<T>, T> | SetTableColumnKey<TableColumnGroup<T>, T>;
|
|
|
|
type TableColumn<T> = TableColumnWithKey<T> | DataTableSelectionColumn<T> | DataTableExpandColumn<T>;
|
|
|
|
/**
|
|
* the type of table operation
|
|
*
|
|
* - add: add table item
|
|
* - edit: edit table item
|
|
*/
|
|
type TableOperateType = 'add' | 'edit';
|
|
}
|