mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
0e7a25c0bd
* multiple storage * all * rm symlinks * all * all
15 lines
252 B
TypeScript
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;
|
|
};
|