UNPKG

dbweb-common

Version:

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

16 lines (15 loc) 535 B
import { OnInit, ElementRef } from '@angular/core'; import { MatDialog } from '@angular/material'; import { CurrentService, ProjectService } from 'dbweb-core'; export declare class WelcomeComponent implements OnInit { prj: ProjectService; cur: CurrentService; private dialog; hostClass: boolean; mainDiv: ElementRef<HTMLElement>; isWrap: boolean; constructor(prj: ProjectService, cur: CurrentService, dialog: MatDialog); ngOnInit(): void; onResize(): void; openSetting(): void; }