refactor(core): remove deprecated coreBootstrap and coreLoadAndBootstrap

BREAKING CHANGE: previously deprecated coreBootstrap and coreLoadAndBootstrap have been removed.

Please follow deprecation instructions to migrate your code.
This commit is contained in:
Igor Minar
2016-08-12 15:56:40 -07:00
committed by Vikram Subramanian
parent f84c3fdc5f
commit 3329977ec9
3 changed files with 1 additions and 30 deletions

View File

@ -398,12 +398,6 @@ export interface ContentChildrenMetadataFactory {
}): ContentChildrenMetadata;
}
/** @deprecated */
export declare function coreBootstrap<C>(componentFactory: ComponentFactory<C>, injector: Injector): ComponentRef<C>;
/** @deprecated */
export declare function coreLoadAndBootstrap(componentType: Type<any>, injector: Injector): Promise<ComponentRef<any>>;
/** @experimental */
export declare function createPlatform(injector: Injector): PlatformRef;