Skip to content

Commit 95c04a8

Browse files
committed
formatting
1 parent d60acc7 commit 95c04a8

File tree

2 files changed

+38
-39
lines changed

2 files changed

+38
-39
lines changed

apps/desktop/src/routes/(window-chrome)/settings/general.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
createMemo,
1515
createResource,
1616
For,
17-
ParentProps,
17+
type ParentProps,
1818
Show,
1919
} from "solid-js";
2020
import { createStore, reconcile } from "solid-js/store";

infra/sst-env.d.ts

Lines changed: 37 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -4,44 +4,43 @@
44
/* deno-fmt-ignore-file */
55

66
declare module "sst" {
7-
export interface Resource {
8-
"AuroraDB": {
9-
"clusterArn": string
10-
"database": string
11-
"host": string
12-
"password": string
13-
"port": number
14-
"reader": string
15-
"secretArn": string
16-
"type": "sst.aws.Aurora"
17-
"username": string
18-
}
19-
"DATABASE_URL_MYSQL": {
20-
"type": "sst.sst.Secret"
21-
"value": string
22-
}
23-
"GITHUB_PAT": {
24-
"type": "sst.sst.Secret"
25-
"value": string
26-
}
27-
"MyApi": {
28-
"type": "sst.aws.ApiGatewayV2"
29-
"url": string
30-
}
31-
"Runner": {
32-
"service": string
33-
"type": "sst.aws.Service"
34-
}
35-
"ShardManager": {
36-
"service": string
37-
"type": "sst.aws.Service"
38-
}
39-
"Vpc": {
40-
"type": "sst.aws.Vpc"
41-
}
42-
}
7+
export interface Resource {
8+
AuroraDB: {
9+
clusterArn: string;
10+
database: string;
11+
host: string;
12+
password: string;
13+
port: number;
14+
reader: string;
15+
secretArn: string;
16+
type: "sst.aws.Aurora";
17+
username: string;
18+
};
19+
DATABASE_URL_MYSQL: {
20+
type: "sst.sst.Secret";
21+
value: string;
22+
};
23+
GITHUB_PAT: {
24+
type: "sst.sst.Secret";
25+
value: string;
26+
};
27+
MyApi: {
28+
type: "sst.aws.ApiGatewayV2";
29+
url: string;
30+
};
31+
Runner: {
32+
service: string;
33+
type: "sst.aws.Service";
34+
};
35+
ShardManager: {
36+
service: string;
37+
type: "sst.aws.Service";
38+
};
39+
Vpc: {
40+
type: "sst.aws.Vpc";
41+
};
42+
}
4343
}
4444
/// <reference path="sst-env.d.ts" />
4545

46-
import "sst"
47-
export {}
46+
import "sst";

0 commit comments

Comments
 (0)