/** * @Author KaySaith * @Date 3/3/21 * @modified-user songxiwen * @modified-date 2021/03/04 13:38 * @modified-description apiBaseUrl -> url */ import { OwnerEnum } from '../constant/resource.constant'; export declare type ResourceSDKType = { apiBaseUrl: string; token: string; provider: 'file-driver' | 'data-driver' | 'translator-engine'; userType?: OwnerEnum; appId?: string; appKey?: string; }; export declare type ModelInitialType = { readonly name?: string; readonly file: File; readonly folderId?: string; readonly processId?: string; readonly projectId?: string; };