dees-catalog/ts_web/elements/interfaces/tab.ts
2024-01-24 12:18:37 +01:00

6 lines
84 B
TypeScript

export interface ITab {
key: string;
iconName?: string;
action: () => void;
}