Files

5 lines
95 B
TypeScript
Raw Permalink Normal View History

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