imports improved

This commit is contained in:
Vladimir Enchev
2015-12-14 17:08:24 +02:00
parent cbf69e60e8
commit 074ac89871
90 changed files with 529 additions and 266 deletions

View File

@ -1,6 +1,6 @@
import definition = require("ui/animation");
import viewModule = require("ui/core/view");
import trace = require("trace");
import * as traceModule from "trace";
export module Properties {
export var opacity = "opacity";
@ -56,6 +56,8 @@ export class Animation implements definition.Animation {
throw new Error("No animation definitions specified");
}
var trace : typeof traceModule = require("trace");
trace.write("Analyzing " + animationDefinitions.length + " animation definitions...", trace.categories.Animation);
this._propertyAnimations = new Array<PropertyAnimation>();
var i = 0;