UNPKG

dbweb-common

Version:

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

14 lines (13 loc) 499 B
import { OnInit } from '@angular/core'; import { MatDialog } from '@angular/material'; import { CurrentService, ElementsService } from 'dbweb-core'; export declare class NavSelectionDeptComponent implements OnInit { dialog: MatDialog; eles: ElementsService; current: CurrentService; isMinNav: boolean; constructor(dialog: MatDialog, eles: ElementsService, current: CurrentService); ngOnInit(): void; customDept(): void; switchDept(code: string): void; }