Files
gpustack-ui/src/config/types.ts
T
2026-02-03 18:21:08 +08:00

17 lines
316 B
TypeScript

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