fix(core): update

This commit is contained in:
2024-01-24 12:18:37 +01:00
parent 5eb2f4cebc
commit 69bb03dcdf
11 changed files with 844 additions and 1 deletions

View File

@ -0,0 +1,2 @@
export * from './tab.js';
export * from './selectionoption.js';

View File

@ -0,0 +1,4 @@
export interface ISelectionOption {
key: string;
action: () => void;
}

View File

@ -0,0 +1,5 @@
export interface ITab {
key: string;
iconName?: string;
action: () => void;
}