refactor(core): fix typo (#13515)

Closes #13512
This commit is contained in:
Dzmitry Shylovich
2016-12-17 02:21:58 +03:00
committed by Chuck Jazdzewski
parent c26c24c544
commit 71e88a8c3c
2 changed files with 4 additions and 4 deletions

View File

@ -305,7 +305,7 @@ export interface ContentChildrenDecorator {
export declare function createPlatform(injector: Injector): PlatformRef;
/** @experimental */
export declare function createPlatformFactory(parentPlaformFactory: (extraProviders?: Provider[]) => PlatformRef, name: string, providers?: Provider[]): (extraProviders?: Provider[]) => PlatformRef;
export declare function createPlatformFactory(parentPlatformFactory: (extraProviders?: Provider[]) => PlatformRef, name: string, providers?: Provider[]): (extraProviders?: Provider[]) => PlatformRef;
/** @stable */
export declare const CUSTOM_ELEMENTS_SCHEMA: SchemaMetadata;