https://github.com/angular/angular
Raw File
Tip revision: 3c3a947778fc2941b035e9e6efb6fb883a4dd79c authored by Dylan Hunn on 17 January 2024, 22:07:29 UTC
Revert "refactor(core): improve forwardRef typings"
Tip revision: 3c3a947
main.ts
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser';

import {AppComponent} from './app/app.component';

bootstrapApplication(AppComponent, {
  providers: [provideProtractorTestingSupport()],
});
back to top