You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
397 B
22 lines
397 B
6 months ago
|
export interface Result<T = any> {
|
||
|
code: number;
|
||
|
success: true | false;
|
||
|
requestId: string;
|
||
|
msg?: string;
|
||
|
data: T;
|
||
|
}
|
||
|
|
||
|
// multipart/form-data: upload file
|
||
|
export interface UploadFileParams {
|
||
|
// Other parameters
|
||
|
data?: Recordable;
|
||
|
// File parameter interface field name
|
||
|
name?: string;
|
||
|
// file name
|
||
|
file: File | Blob;
|
||
|
// file name
|
||
|
filename?: string;
|
||
|
|
||
|
[key: string]: any;
|
||
|
}
|