@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
30 lines • 748 B
TypeScript
declare const CLOUD_STORAGE_PROVIDERS: readonly ["cloudflare", "aws_s3", "do_space", "google"];
export type CloudStorageProvider = (typeof CLOUD_STORAGE_PROVIDERS)[number];
export type ICloudStorage = {
provider: CloudStorageProvider;
bucket: string;
region: string;
endpoint?: string;
baseUrl?: string;
basePath?: string;
accessKey: string;
secretKey: string;
};
export type StorageUploadOptions = {
storage?: ICloudStorage;
debug?: boolean;
/**
* CDN domain
*/
storageHost?: string;
/**
* Examples: "gzip"
*/
contentEncoding?: string;
/**
* Example: "public, max-age=31536000"
*/
cacheControl?: string;
};
export {};
//# sourceMappingURL=types.d.ts.map