refactor(editor): RunData components to composition API (no-changelog) (#11545)

This commit is contained in:
Elias Meire
2024-11-07 15:29:02 +01:00
committed by GitHub
parent 28ad66cc12
commit 6e2809b490
13 changed files with 2044 additions and 2070 deletions

View File

@@ -1129,8 +1129,8 @@ export interface IInviteResponse {
error?: string;
}
export interface ITab {
value: string | number;
export interface ITab<Value extends string | number = string | number> {
value: Value;
label?: string;
href?: string;
icon?: string;