src/storage/dto/file-upload.dto.ts
Properties |
file |
Type : any
|
Decorators :
@ApiProperty({type: 'string', format: 'binary'})
|
Defined in src/storage/dto/file-upload.dto.ts:5
|
import { ApiProperty } from "@nestjs/swagger";
export class FileUploadDto {
@ApiProperty({ type: "string", format: "binary" })
file: any;
}