RCKitStore
    Preparing search index...

    Interface IKitUploadRequestData

    上传请求数据接口 用于外部调用者发起请求

    interface IKitUploadRequestData {
        body: Record<string, string>;
        contentType?: string;
        fileName: string;
        headers: Record<string, string>;
        uniqueName?: string;
        uploadMethod?: UploadMethod;
        url: string;
    }
    Index

    Properties

    body: Record<string, string>
    contentType?: string
    fileName: string
    headers: Record<string, string>
    uniqueName?: string
    uploadMethod?: UploadMethod
    url: string