UNPKG

dbweb-common

Version:

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

22 lines (21 loc) 854 B
import { OnInit } from '@angular/core'; import { DumpInstitutionService, DumpType } from './dump-institution.service'; import { CurrentService, ProjectService, ElementsService } from 'dbweb-core'; import { TabsService } from '../home/tabs.service'; export declare class DumpInstitutionComponent implements OnInit { svr: DumpInstitutionService; private project; current: CurrentService; private tabs; private eles; hostClass: boolean; displayedColumns: string[]; readonly dumpTypeInstitution = DumpType.institution; readonly dumpTypeData = DumpType.data; dumpDone: boolean; taskURL: string; constructor(svr: DumpInstitutionService, project: ProjectService, current: CurrentService, tabs: TabsService, eles: ElementsService); ngOnInit(): void; dump(): void; close(): void; }