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

View file

@ -6,20 +6,20 @@
import "sst"
declare module "sst" {
export interface Resource {
Web: {
type: "sst.cloudflare.StaticSite"
url: string
"Web": {
"type": "sst.cloudflare.StaticSite"
"url": string
}
}
}
// cloudflare
import * as cloudflare from "@cloudflare/workers-types"
// cloudflare
import * as cloudflare from "@cloudflare/workers-types";
declare module "sst" {
export interface Resource {
Api: cloudflare.Service
Bucket: cloudflare.R2Bucket
"Api": cloudflare.Service
"Bucket": cloudflare.R2Bucket
}
}
import "sst"
export {}
export {}