feat: Create image pipeline

This commit is contained in:
Wanjohi
2025-06-04 13:50:06 +03:00
parent e67a8d2b32
commit 0124af1b70
9 changed files with 289 additions and 6 deletions

13
sst-env.d.ts vendored
View File

@@ -57,6 +57,10 @@ declare module "sst" {
"type": "sst.sst.Secret"
"value": string
}
"ImageRouter": {
"type": "sst.aws.Router"
"url": string
}
"NestriFamilyMonthly": {
"type": "sst.sst.Secret"
"value": string
@@ -117,6 +121,15 @@ declare module "sst" {
}
}
}
// cloudflare
import * as cloudflare from "@cloudflare/workers-types";
declare module "sst" {
export interface Resource {
"ImageBucket": cloudflare.R2Bucket
"ImageCDN": cloudflare.Service
"ImageCache": cloudflare.KVNamespace
}
}
import "sst"
export {}