7 lines
161 B
TypeScript
7 lines
161 B
TypeScript
import { S3ClientConfig } from '@aws-sdk/client-s3';
|
|
|
|
export interface S3StorageModuleOptions extends S3ClientConfig {
|
|
bucketName: string;
|
|
region: string;
|
|
}
|