| 3 | import { Outputs, State } from "./constants"; |
| 4 | |
| 5 | export interface IStateProvider { |
| 6 | setState(key: string, value: string): void; |
| 7 | getState(key: string): string; |
| 8 | |
| 9 | getCacheState(): string | undefined; |
| 10 | } |
| 11 | |
| 12 | class StateProviderBase implements IStateProvider { |
| 13 | getCacheState(): string | undefined { |
no outgoing calls
no test coverage detected
searching dependent graphs…