-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsst-env.d.ts
62 lines (62 loc) · 1.12 KB
/
sst-env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* tslint:disable */
/* eslint-disable */
import "sst"
declare module "sst" {
export interface Resource {
FacebookId: {
type: "sst.sst.Secret"
value: string
}
FacebookSecret: {
type: "sst.sst.Secret"
value: string
}
GeminiApiKey: {
type: "sst.sst.Secret"
value: string
}
GoogleId: {
type: "sst.sst.Secret"
value: string
}
GoogleSecret: {
type: "sst.sst.Secret"
value: string
}
GraphApiToken: {
type: "sst.sst.Secret"
value: string
}
MyBucket: {
name: string
type: "sst.aws.Bucket"
}
MyDatabase: {
clusterArn: string
database: string
secretArn: string
type: "sst.aws.Postgres"
}
MyWeb: {
type: "sst.aws.Nextjs"
url: string
}
OpenApiKey: {
type: "sst.sst.Secret"
value: string
}
StripeSecretKey: {
type: "sst.sst.Secret"
value: string
}
StripeWebhookSecret: {
type: "sst.sst.Secret"
value: string
}
WebhookVerifyToken: {
type: "sst.sst.Secret"
value: string
}
}
}
export {}