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