mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
fd55c3d8e3
* feat: S3 objects are now typed in Python and TS SDK * fix ts and python SDK after testing * cleanup
14 lines
230 B
TypeScript
14 lines
230 B
TypeScript
export type S3Object = {
|
|
s3: string
|
|
}
|
|
|
|
export type DenoS3LightClientSettings = {
|
|
endPoint: string,
|
|
region: string ,
|
|
bucket?: string,
|
|
useSSL?: boolean,
|
|
accessKey?: string,
|
|
secretKey?: string,
|
|
pathStyle?: boolean,
|
|
}
|