add explicit references

This commit is contained in:
VILIC VANE
2015-03-02 17:29:31 +08:00
parent 4cec771c4d
commit 0622fda0b6
2 changed files with 6 additions and 1 deletions
+3
View File
@@ -3,6 +3,9 @@
// Definitions by: VILIC VANE <https://vilic.github.io/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="Core.d.ts" />
/// <reference path="Ease.d.ts" />
declare class TweenLite {
constructor(target: any, duration: number, vars: any);
+3 -1
View File
@@ -1,4 +1,6 @@
var tween = TweenLite
/// <reference path="TweenLite.d.ts" />
var tween = TweenLite
.to(document.getElementById('some-div'), 1, {
width: '200px',
height: '200px'