Shared base object for a derived Check or Status result.
| 25 | |
| 26 | /** Shared base object for a derived Check or Status result. */ |
| 27 | interface CheckOrStatusResult { |
| 28 | type: string; |
| 29 | name: string; |
| 30 | result: string; |
| 31 | url: string; |
| 32 | } |
| 33 | |
| 34 | /** A derived Check result */ |
| 35 | interface CheckResult extends CheckOrStatusResult { |
nothing calls this directly
no outgoing calls
no test coverage detected