(requirements: { [key: string]: string | number | boolean })
| 4 | |
| 5 | export interface Context { |
| 6 | requirementsAreMet(requirements: { [key: string]: string | number | boolean }): boolean; |
| 7 | } |
| 8 | |
| 9 | export class NoRequirements implements Context { |
no outgoing calls
no test coverage detected