/**
 * Created by jd on 07/07/2016.
 */
import {Component, ViewEncapsulation} from "@angular/core";
import 'gsap';
declare var module:any;
@Component(
    {
        moduleId:module.id,
        selector: "core-gsap",
        encapsulation: ViewEncapsulation.None,
        templateUrl: "core-gsap.template.html",
    }
)
export class CoreGsap
{
    constructor()
    {
        var tl = new TimelineMax({ delay: 1 });
        var t = "";

    }
}