fix(platform-browser): remove export for private symbol _WORKER_UI_PLATFORM_PROVIDERS. (#11018)

This commit is contained in:
Alex Rickabaugh 2016-08-23 16:16:40 -07:00 committed by Kara
parent 14a30f3ca0
commit 05bbb8efcf
2 changed files with 1 additions and 4 deletions

View File

@ -26,6 +26,6 @@ export {WORKER_APP_LOCATION_PROVIDERS} from './src/web_workers/worker/location_p
export {WORKER_UI_LOCATION_PROVIDERS} from './src/web_workers/ui/location_providers';
export {NgProbeToken} from './src/dom/debug/ng_probe';
export * from './src/worker_render';
export {platformWorkerUi, WebWorkerInstance, WORKER_SCRIPT, WORKER_UI_STARTABLE_MESSAGING_SERVICE} from './src/worker_render';
export {platformWorkerApp, WorkerAppModule} from './src/worker_app';
export * from './private_export';

View File

@ -1,6 +1,3 @@
/** @experimental */
export declare const _WORKER_UI_PLATFORM_PROVIDERS: Provider[];
/** @experimental */
export declare abstract class AnimationDriver {
abstract animate(element: any, startingStyles: AnimationStyles, keyframes: AnimationKeyframe[], duration: number, delay: number, easing: string): AnimationPlayer;