| 5 | } |
| 6 | |
| 7 | export interface IsrServiceInterface { |
| 8 | getState(): IsrState; |
| 9 | patchState(partialState: Partial<IsrState>): void; |
| 10 | getExtra(): Record<string, unknown>; |
| 11 | activate(): void; |
| 12 | addError(error: Error): void; |
| 13 | addExtra(extra?: Record<string, unknown>): void; |
| 14 | } |
no outgoing calls
no test coverage detected