dbweb-common
Version:
用`yarn add dbweb-common`安装,不要忘记修改`angular.json`里的 `architect\build\options\assets`,加上
23 lines (22 loc) • 588 B
TypeScript
import { OnInit } from '@angular/core';
import { IndexService, CardSize } from '../index.service';
export interface PeriodicElement {
uid: number;
name: string;
portrait: string;
address: string;
code: string;
phone: number;
duty: string;
remark: string;
}
export declare class DataListComponent implements OnInit {
svr: IndexService;
hostClass: boolean;
navName: string;
navSize: CardSize;
displayedColumns: string[];
dataSource: PeriodicElement[];
constructor(svr: IndexService);
ngOnInit(): void;
}