dbweb-common
Version:
用`yarn add dbweb-common`安装,不要忘记修改`angular.json`里的 `architect\build\options\assets`,加上
20 lines (19 loc) • 726 B
TypeScript
import { OnInit, OnDestroy } from '@angular/core';
import { FormControl } from '@angular/forms';
import { ThemeService, ThemeModel } from '../../../services/theme.service';
import { ElementDataImport, ElementService } from '../../service/element.service';
import { Subscription } from 'rxjs';
export declare class ImportSetComponent implements OnInit, OnDestroy {
elementSvr: ElementService;
private theme;
hostClass: boolean;
themeModel: ThemeModel;
svr: ElementDataImport;
tableControl: FormControl;
options: any;
tables: string[];
subs: Subscription[];
constructor(elementSvr: ElementService, theme: ThemeService);
ngOnDestroy(): void;
ngOnInit(): void;
}