nestjs-alicloud-oss
Version:
Alicloud OSS(Object Storage Service) module for NestJS framework (node.js)
8 lines (7 loc) • 433 B
TypeScript
import { NestInterceptor, Type } from '@nestjs/common';
import { MulterOptions } from '@nestjs/platform-express/multer/interfaces/multer-options.interface';
import { PutObjectOptions } from 'ali-oss';
export declare function AlicloudOssFileInterceptor(fieldName: string, localOptions?: MulterOptions, fileOptions?: {
bucket?: string;
folder?: string;
}, ossOptions?: Partial<PutObjectOptions>): Type<NestInterceptor>;