4 lines
74 B
TypeScript
Raw Normal View History

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