update picker modal interface

This commit is contained in:
Mads Rasmussen
2023-05-09 11:06:48 +02:00
parent a4cd7fd724
commit e7e46b250c
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
export interface UmbPickerModalData<T> {
multiple: boolean;
selection: Array<string | null>;
multiple?: boolean;
selection?: Array<string | null>;
filter?: (item: T) => boolean;
}