Resolve editor/type warnings (#7687)

* resolve editor/type warnings

* dont rename props
This commit is contained in:
Nitwel
2021-08-30 22:54:17 +02:00
committed by GitHub
parent b3e041fc09
commit 607e32ea36
22 changed files with 80 additions and 74 deletions

View File

@@ -92,7 +92,7 @@ export function useGroupable(options?: GroupableOptions): UsableGroupable {
}
type GroupableParentState = {
selection?: Ref<(string | number)[]> | Ref<readonly (string | number)[]>;
selection?: Ref<(string | number)[] | undefined> | Ref<readonly (string | number)[] | undefined>;
onSelectionChange?: (newSelectionValues: readonly (string | number)[]) => void;
};