mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-17 07:45:52 +01:00
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
|
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;
|
||
|
}
|