import type { IUploader } from './i-uploader'; import type { IUploaderUserOption } from './i-uploader-option'; export interface IUploaderFactory { create(option: IUploaderUserOption): IUploader; }