| 5 | |
| 6 | 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 | } |
| 43 | } |
| 44 | /// <reference path="sst-env.d.ts" /> |
| 45 |
nothing calls this directly
no outgoing calls
no test coverage detected