(pageId: string)
| 24 | return this.react.cache.find((page) => page.id === pageId) ?? null; |
| 25 | } |
| 26 | has(pageId: string): boolean { |
| 27 | return this.get(pageId) != null; |
| 28 | } |
| 29 | |
| 30 | add(page: Page): void { |
| 31 | this.react.cache.push(page); |
no test coverage detected