dees-catalog/ts_web/elements/interfaces/tab.ts

6 lines
84 B
TypeScript
Raw Permalink Normal View History

2024-01-24 11:18:37 +00:00
export interface ITab {
key: string;
iconName?: string;
action: () => void;
}