Files
windmill/typescript-client/s3Types.ts
T
2024-05-31 11:59:51 +02:00

15 lines
252 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;
};