docs(core): remove experimental tag (#24032)

Remove experimental note on APP_INITIALIZER.

PR Close #24032
This commit is contained in:
mhartington 2018-05-21 10:55:05 -04:00 committed by Igor Minar
parent 7a4fb44f8d
commit 2b6e1f0f4b
1 changed files with 0 additions and 3 deletions

View File

@ -13,14 +13,11 @@ import {Inject, Injectable, InjectionToken, Optional} from './di';
/**
* A function that will be executed when an application is initialized.
* @experimental
*/
export const APP_INITIALIZER = new InjectionToken<Array<() => void>>('Application Initializer');
/**
* A class that reflects the state of running {@link APP_INITIALIZER}s.
*
* @experimental
*/
@Injectable()
export class ApplicationInitStatus {