17 lines
307 B
TypeScript
17 lines
307 B
TypeScript
export interface DropDownItem {
|
|
key: string;
|
|
label: string;
|
|
icon?: React.ReactNode;
|
|
disabled?: boolean;
|
|
iconfont?: boolean;
|
|
}
|
|
|
|
export type PageActionType = 'create' | 'update' | 'view' | 'edit';
|
|
|
|
export type StatusType =
|
|
| 'error'
|
|
| 'warning'
|
|
| 'transitioning'
|
|
| 'success'
|
|
| 'inactive';
|