33/* eslint-disable */
44/* deno-fmt-ignore-file */
55
6- /// <reference path="../../../sst-env.d.ts" />
6+ import "sst"
7+ declare module "sst" {
8+ export interface Resource {
9+ "ADMIN_SECRET" : {
10+ "type" : "sst.sst.Secret"
11+ "value" : string
12+ }
13+ "AUTH_API_URL" : {
14+ "type" : "sst.sst.Linkable"
15+ "value" : string
16+ }
17+ "AWS_SES_ACCESS_KEY_ID" : {
18+ "type" : "sst.sst.Secret"
19+ "value" : string
20+ }
21+ "AWS_SES_SECRET_ACCESS_KEY" : {
22+ "type" : "sst.sst.Secret"
23+ "value" : string
24+ }
25+ "Console" : {
26+ "type" : "sst.cloudflare.SolidStart"
27+ "url" : string
28+ }
29+ "Database" : {
30+ "database" : string
31+ "host" : string
32+ "password" : string
33+ "port" : number
34+ "type" : "sst.sst.Linkable"
35+ "username" : string
36+ }
37+ "Desktop" : {
38+ "type" : "sst.cloudflare.StaticSite"
39+ "url" : string
40+ }
41+ "EMAILOCTOPUS_API_KEY" : {
42+ "type" : "sst.sst.Secret"
43+ "value" : string
44+ }
45+ "GITHUB_APP_ID" : {
46+ "type" : "sst.sst.Secret"
47+ "value" : string
48+ }
49+ "GITHUB_APP_PRIVATE_KEY" : {
50+ "type" : "sst.sst.Secret"
51+ "value" : string
52+ }
53+ "GITHUB_CLIENT_ID_CONSOLE" : {
54+ "type" : "sst.sst.Secret"
55+ "value" : string
56+ }
57+ "GITHUB_CLIENT_SECRET_CONSOLE" : {
58+ "type" : "sst.sst.Secret"
59+ "value" : string
60+ }
61+ "GOOGLE_CLIENT_ID" : {
62+ "type" : "sst.sst.Secret"
63+ "value" : string
64+ }
65+ "HONEYCOMB_API_KEY" : {
66+ "type" : "sst.sst.Secret"
67+ "value" : string
68+ }
69+ "STRIPE_SECRET_KEY" : {
70+ "type" : "sst.sst.Secret"
71+ "value" : string
72+ }
73+ "STRIPE_WEBHOOK_SECRET" : {
74+ "type" : "sst.sst.Linkable"
75+ "value" : string
76+ }
77+ "Web" : {
78+ "type" : "sst.cloudflare.Astro"
79+ "url" : string
80+ }
81+ "ZEN_MODELS1" : {
82+ "type" : "sst.sst.Secret"
83+ "value" : string
84+ }
85+ "ZEN_MODELS2" : {
86+ "type" : "sst.sst.Secret"
87+ "value" : string
88+ }
89+ }
90+ }
91+ // cloudflare
92+ import * as cloudflare from "@cloudflare/workers-types" ;
93+ declare module "sst" {
94+ export interface Resource {
95+ "Api" : cloudflare . Service
96+ "AuthApi" : cloudflare . Service
97+ "AuthStorage" : cloudflare . KVNamespace
98+ "Bucket" : cloudflare . R2Bucket
99+ "LogProcessor" : cloudflare . Service
100+ }
101+ }
7102
8103import "sst"
9104export { }
0 commit comments