import { Component, ElementRef, Injector, OnInit, ViewChild } from '@angular/core'; import { appModuleAnimation } from '@shared/animations/routerTransition'; import { AppComponentBase } from '@shared/common/app-component-base'; import * as _ from 'lodash'; declare function getInfoFrameHeight(): any; @Component({ templateUrl: './runcardsystem.component.html', styleUrls: ['./runcardsystem.component.less'], animations: [appModuleAnimation()], }) export class RuncardsystemComponent extends AppComponentBase implements OnInit { constructor( injector: Injector ) { super(injector); } ngOnInit(): void { } }