Files
DefinitelyTyped/types/gsap/gsap-tests.ts
Andy b6c343f2b3 Apply new lint rules to yet more packages (#15548)
* Apply new lint rules to yet more packages

* Fix leaflet lint
2017-03-31 11:01:26 -07:00

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);