6 lines
84 B
TypeScript
Raw Normal View History

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