8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
export interface IS3Descriptor {
|
|
endpoint: string;
|
|
port?: number;
|
|
useSsl?: boolean;
|
|
accessKey: string;
|
|
accessSecret: string;
|
|
}
|