This commit is contained in:
Dax Raad
2025-05-31 18:42:43 -04:00
parent 6d21525e71
commit e97ed735d9
12 changed files with 58 additions and 45 deletions

18
sst-env.d.ts vendored
View File

@@ -5,20 +5,20 @@
declare module "sst" {
export interface Resource {
Api: {
type: "sst.cloudflare.Worker"
url: string
"Api": {
"type": "sst.cloudflare.Worker"
"url": string
}
Bucket: {
type: "sst.cloudflare.Bucket"
"Bucket": {
"type": "sst.cloudflare.Bucket"
}
Web: {
type: "sst.cloudflare.StaticSite"
url: string
"Web": {
"type": "sst.cloudflare.StaticSite"
"url": string
}
}
}
/// <reference path="sst-env.d.ts" />
import "sst"
export {}
export {}