mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-25 11:11:46 +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); |