mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
9 lines
180 B
TypeScript
9 lines
180 B
TypeScript
import { TweenLite } from 'gsap';
|
|
|
|
const tween = TweenLite
|
|
.to(document.getElementById('some-div'), 1, {
|
|
width: '200px',
|
|
height: '200px'
|
|
})
|
|
.seek(0.5);
|