UNPKG

dbweb-common

Version:

用`yarn add dbweb-common`安装,不要忘记修改`angular.json`里的 `architect\build\options\assets`,加上

29 lines (28 loc) 986 B
import { OnInit, EventEmitter } from '@angular/core'; import { IRecordViewProcess } from '../model/model'; import { ServiceService } from '../service/service.service'; import { ElementsService } from 'dbweb-core'; export declare class FooterToolbarComponent implements OnInit { svr: ServiceService; private eles; class: string; process: IRecordViewProcess[]; pageSize: number; startRowNo: number; rowCount: number; responseTime: number; refreshDisable: boolean; nextPageDisable: boolean; PrevPageDisable: boolean; processClick: EventEmitter<IRecordViewProcess>; rowCountClick: EventEmitter<MouseEvent>; prevPageClick: EventEmitter<MouseEvent>; nextPageClick: EventEmitter<MouseEvent>; Math: Math; wingAnimation: boolean; constructor(svr: ServiceService, eles: ElementsService); ngOnInit(): void; pageText(): string; rowCountText(): string; responseTimeText(): string; }