// Generated by typings // Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/9027703c0bd831319dcdf7f3169f7a468537f448/zone.js/zone.js.d.ts declare class Zone { constructor(parentZone: Zone, data: any); fork(locals?: {[key: string]: any}): Zone; bind(fn: Function, skipEnqueue?: boolean): void; bindOnce(fn: Function): any; run(fn: Function, applyTo?: any, applyWith?: any): void; isRootZone(): boolean; static bindPromiseFn Promise>(fn: T): T; static longStackTraceZone: {[key: string]: any}; }