// Angular imports // import { Component } from '@angular/core'; import { downgradeComponent } from '@angular/upgrade/static'; declare const angular: angular.IAngularStatic; const styles: any[] = [require('./fb-side-drawer-footer.component.less')]; @Component({ selector: 'fb-side-drawer-footer', templateUrl: './fb-side-drawer-footer.component.html', styles: styles }) export class FbSideDrawerFooterComponent { } angular.module('fasit') .directive('fbSideDrawerFooter', downgradeComponent({ component: FbSideDrawerFooterComponent, inputs: [], outputs: [] }) as angular.IDirectiveFactory);