Skip to content

Commit 2e385da

Browse files
committed
types
1 parent 8f9b642 commit 2e385da

File tree

10 files changed

+55
-60
lines changed

10 files changed

+55
-60
lines changed

app/core/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

app/function/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

app/web/src/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ interface ImportMetaEnv {
1010
}
1111
interface ImportMeta {
1212
readonly env: ImportMetaEnv
13-
}
13+
}

app/web/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

app/zero/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

examples/bun/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

packages/frontend/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

packages/opencontrol/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

sst-env.d.ts

Lines changed: 46 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -5,71 +5,66 @@
55

66
declare module "sst" {
77
export interface Resource {
8-
AnthropicApiKey: {
9-
type: "sst.sst.Secret"
10-
value: string
8+
"AnthropicApiKey": {
9+
"type": "sst.sst.Secret"
10+
"value": string
1111
}
12-
Api: {
13-
name: string
14-
type: "sst.aws.Function"
15-
url: string
12+
"Api": {
13+
"name": string
14+
"type": "sst.aws.Function"
15+
"url": string
1616
}
17-
Auth: {
18-
type: "sst.sst.Linkable"
19-
url: string
17+
"Auth": {
18+
"type": "sst.sst.Linkable"
19+
"url": string
2020
}
21-
DatabaseMigrator: {
22-
name: string
23-
type: "sst.aws.Function"
21+
"DatabaseMigrator": {
22+
"name": string
23+
"type": "sst.aws.Function"
2424
}
25-
Docs: {
26-
type: "sst.aws.Astro"
27-
url: string
25+
"Docs": {
26+
"type": "sst.aws.Astro"
27+
"url": string
2828
}
29-
Postgres: {
30-
clusterArn: string
31-
database: string
32-
host: string
33-
password: string
34-
port: number
35-
reader: string
36-
secretArn: string
37-
type: "sst.aws.Aurora"
38-
username: string
29+
"Postgres": {
30+
"clusterArn": string
31+
"database": string
32+
"host": string
33+
"password": string
34+
"port": number
35+
"reader": string
36+
"secretArn": string
37+
"type": "sst.aws.Aurora"
38+
"username": string
3939
}
40-
Router: {
41-
type: "sst.aws.Router"
42-
url: string
40+
"Router": {
41+
"type": "sst.aws.Router"
42+
"url": string
4343
}
44-
Storage: {
45-
name: string
46-
type: "sst.aws.Bucket"
44+
"Storage": {
45+
"name": string
46+
"type": "sst.aws.Bucket"
4747
}
48-
StoragePublic: {
49-
name: string
50-
type: "sst.aws.Bucket"
48+
"StoragePublic": {
49+
"name": string
50+
"type": "sst.aws.Bucket"
5151
}
52-
Vpc: {
53-
bastion: string
54-
type: "sst.aws.Vpc"
52+
"Vpc": {
53+
"bastion": string
54+
"type": "sst.aws.Vpc"
5555
}
56-
Web: {
57-
type: "sst.aws.StaticSite"
58-
url: string
56+
"Web": {
57+
"type": "sst.aws.StaticSite"
58+
"url": string
5959
}
60-
Zero: {
61-
service: string
62-
type: "sst.aws.Service"
63-
url: string
64-
}
65-
ZeroReplication: {
66-
service: string
67-
type: "sst.aws.Service"
68-
url: string
60+
"Zero": {
61+
"service": string
62+
"type": "sst.aws.Service"
63+
"url": string
6964
}
7065
}
7166
}
7267
/// <reference path="sst-env.d.ts" />
7368

7469
import "sst"
75-
export {}
70+
export {}

www/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

0 commit comments

Comments
 (0)