UNPKG

dbweb-common

Version:

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

21 lines (20 loc) 679 B
import { OnInit, ElementRef } from '@angular/core'; import { CardType, IndexService, IndexLayout } from '../index.service'; import { MatDialogRef } from '@angular/material'; interface SettingCard { Type: CardType; Name: string; Enabled: boolean; } export declare class SettingDialogComponent implements OnInit { svr: IndexService; private elementRef; dialogRef: MatDialogRef<SettingDialogComponent>; hostClass: boolean; layout: IndexLayout; cards: SettingCard[]; constructor(svr: IndexService, elementRef: ElementRef, dialogRef: MatDialogRef<SettingDialogComponent>); ngOnInit(): void; ok(): void; } export {};