1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-17 07:45:52 +01:00
verdaccio/packages/plugins/aws-storage/src/config.ts

13 lines
275 B
TypeScript
Raw Normal View History

import { Config } from '@verdaccio/types';
export interface S3Config extends Config {
bucket: string;
keyPrefix: string;
endpoint?: string;
region?: string;
s3ForcePathStyle?: boolean;
accessKeyId?: string;
secretAccessKey?: string;
sessionToken?: string;
}