bia-framework
Version:
Bia Framework to work with angular 2
23 lines (22 loc) • 465 B
text/typescript
/**
* Created by jd on 07/07/2016.
*/
import {Component, ViewEncapsulation} from "@angular/core";
import 'gsap';
declare var module:any;
(
{
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 = "";
}
}