Skip to content

Commit 0622fda

Browse files
author
VILIC VANE
committed
add explicit references
1 parent 4cec771 commit 0622fda

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

gsap/TweenLite.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
// Definitions by: VILIC VANE <https://vilic.github.io/>
44
// Definitions: https://github.com/borisyankov/DefinitelyTyped
55

6+
/// <reference path="Core.d.ts" />
7+
/// <reference path="Ease.d.ts" />
8+
69
declare class TweenLite {
710
constructor(target: any, duration: number, vars: any);
811

gsap/gsap-tests.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
var tween = TweenLite
1+
/// <reference path="TweenLite.d.ts" />
2+
3+
var tween = TweenLite
24
.to(document.getElementById('some-div'), 1, {
35
width: '200px',
46
height: '200px'

0 commit comments

Comments
 (0)