Type Alias SelectFileContent

SelectFileContent: (
    payload: {
        allowed_asset_content_types?: FileContentTypeEnum[];
        allowed_content_types?: FileContentTypeEnum[];
        allowed_selector_types?: SelectorType[];
        attach_to?: HTMLElement | string;
        initial_metadata_filters?: Record<string, any>;
        selections?: Selection[];
    },
) => Promise<
    { content?: (SelectedFile | SelectedPage)[]; user_action: string },
>

Type declaration