mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
/// <reference path="TweenLite.d.ts" />
|
|
|
|
var tween = TweenLite
|
|
.to(document.getElementById('some-div'), 1, {
|
|
width: '200px',
|
|
height: '200px'
|
|
})
|
|
.seek(0.5); |