| 3 | import * as Log from "./log"; |
| 4 | |
| 5 | export interface Context { |
| 6 | requirementsAreMet(requirements: { [key: string]: string | number | boolean }): boolean; |
| 7 | } |
| 8 | |
| 9 | export class NoRequirements implements Context { |
| 10 | requirementsAreMet(requirements: { [key: string]: string | number | boolean }): boolean { |
no outgoing calls
no test coverage detected