Files
catalog/ts_web/elements/interfaces/tab.ts

10 lines
225 B
TypeScript
Raw Normal View History

2026-01-06 02:24:12 +00:00
export interface IMenuItem {
key: string;
iconName?: string;
action: () => void;
badge?: string | number;
badgeVariant?: 'default' | 'success' | 'warning' | 'error';
closeable?: boolean;
onClose?: () => void;
}