MCPcopy Index your code
hub / github.com/angular/dev-infra / StatusHttpResponse

Interface StatusHttpResponse

ng-dev/caretaker/check/services.ts:22–30  ·  view source on GitHub ↗

* Status HTTP responses which are commonly used by services like GitHub. * See for example: https://www.githubstatus.com/api.

Source from the content-addressed store, hash-verified

20 * See for example: https://www.githubstatus.com/api.
21 */
22interface 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 */
33interface StatusCheckResult {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected