Files
DefinitelyTyped/types/zone.js/zone.js-tests.ts
2017-03-24 14:27:52 -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');
});