DefinitelyTyped/zone.js/zone.js-tests.ts
2016-05-10 12:22:25 -07:00

12 lines
177 B
TypeScript

declare var zone: Zone;
zone.fork().fork({
beforeTask: function () {
console.log('from beforeTask');
}
}).run(function () {
console.log('from main');
});