Type Alias CollectionSelectorProps

CollectionSelectorProps: {
    attachTo?: string | HTMLElement;
    closeOnSettings?: boolean;
    fetchFile: (id: string) => Promise<FileRetrieve>;
    fetchFileList: FetchFileList;
    hideClose?: boolean;
    initialData?: CollectionPlayer;
    initialMetadataFilters?: Record<string, any>;
    openSettings?: () => void;
    readonlyName?: boolean;
    selectFileContent: SelectFileContent;
    translations?: Translations;
    zIndex?: number;
}

Type declaration