Files
windmill/typescript-client/s3Types.d.ts
T
Ruben Fiszel 7c44f1296d add tsdocs
2024-06-21 15:59:06 +02:00

14 lines
269 B
TypeScript

export type S3Object = {
s3: string;
storage?: string;
};
export type DenoS3LightClientSettings = {
endPoint: string;
region: string;
bucket?: string;
useSSL?: boolean;
accessKey?: string;
secretKey?: string;
pathStyle?: boolean;
};