Files
windmill/typescript-client/s3Types.ts
T
2023-12-20 18:12:37 +01:00

15 lines
233 B
TypeScript

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