mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
/// <reference path="zone.js.d.ts" />
|
|
|
|
declare var zone: Zone;
|
|
|
|
zone.fork().fork({
|
|
beforeTask: function () {
|
|
console.log('from beforeTask');
|
|
}
|
|
}).run(function () {
|
|
console.log('from main');
|
|
});
|