UNPKG

dbweb-common

Version:

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

17 lines (16 loc) 575 B
import { OnInit } from '@angular/core'; import { Label } from '../../../../services/eleview/types/label'; import { LabelManagerService } from '../../service/label-manager.service'; import { MatDialog } from '@angular/material'; export declare class LabelForEditComponent implements OnInit { svr: LabelManagerService; private dialog; label: Label; categoryID: string; hostClass: boolean; removeConfirm: boolean; constructor(svr: LabelManagerService, dialog: MatDialog); ngOnInit(): void; edit(): void; remove(): void; }