mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 16:02:24 +00:00
16 lines
274 B
TypeScript
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;
|
|
};
|