* Status HTTP responses which are commonly used by services like GitHub. * See for example: https://www.githubstatus.com/api.
| 20 | * See for example: https://www.githubstatus.com/api. |
| 21 | */ |
| 22 | interface StatusHttpResponse { |
| 23 | page: { |
| 24 | updated_at: string; |
| 25 | }; |
| 26 | status: { |
| 27 | description: string; |
| 28 | indicator: 'none' | 'minor' | 'major' | 'critical'; |
| 29 | }; |
| 30 | } |
| 31 | |
| 32 | /** The results of checking the status of a service */ |
| 33 | interface StatusCheckResult { |
nothing calls this directly
no outgoing calls
no test coverage detected