()
| 57 | ]; |
| 58 | |
| 59 | function initDominoAdapter() { |
| 60 | const injector = inject(Injector); |
| 61 | const _enableDomEmulation = enableDomEmulation(injector); |
| 62 | return () => { |
| 63 | if (_enableDomEmulation) { |
| 64 | DominoAdapter.makeCurrent(); |
| 65 | } else { |
| 66 | BrowserDomAdapter.makeCurrent(); |
| 67 | } |
| 68 | }; |
| 69 | } |
| 70 | |
| 71 | export const SERVER_RENDER_PROVIDERS: Provider[] = [ |
| 72 | {provide: EVENT_MANAGER_PLUGINS, multi: true, useClass: ServerEventManagerPlugin}, |
nothing calls this directly
no test coverage detected
searching dependent graphs…