feat(core): make ngprobe tokens pluggable

This commit is contained in:
vsavkin
2016-08-10 22:17:20 -07:00
committed by Vikram Subramanian
parent 947f9c3f56
commit f48142e679
4 changed files with 53 additions and 11 deletions

View File

@ -126,6 +126,11 @@ export interface MessageBusSource {
initChannel(channel: string, runInZone: boolean): void;
}
/** @experimental */
export declare class NgProbeToken {
constructor(name: string, token: any);
}
/** @experimental */
export declare const platformBrowser: (extraProviders?: any[]) => PlatformRef;