export enum filePickerType { file = "file", directory = "directory", } export enum tableListType { collect = "collect", networkDir = "networkDir", externalHardDrive = "externalHardDrive", appData = "appData", fileMount = "fileMount", } export interface filePickerPropsType { boxId: string; type: filePickerType; title?: string; rootpath?: string; rootname?: string; multiple?: boolean; //是否多选 accept?: string; //过滤 confirmButtonTitle?: string; //确认标题 tableList?: tableListType[]; //显示哪些table }