Files
windmill/typescript-client/s3Types.ts
HugoCasa 62b0925db9 b
2025-04-11 15:00:16 +02:00

16 lines
274 B
TypeScript

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