tsclass/ts/storage/index.ts
2024-06-08 19:10:46 +02:00

16 lines
307 B
TypeScript

export interface IS3Descriptor {
endpoint: string;
port?: number;
useSsl?: boolean;
accessKey: string;
accessSecret: string;
/**
* may be used to preselect a certain bucket
*/
bucketName?: string;
/**
* may be used to preselect a certain directory
*/
directoryPath?: string;
}