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 3d3a1a4642
commit 0fc83215e2

View File

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