import {Component, ViewEncapsulation} from 'angular2/core'; @Component({ selector: 'typography', pipes: [], providers: [], styles: [], template: 'typography' }) export class Typography { constructor() { } ngOnInit() { console.log('typography'); } }