UNPKG

dbweb-common

Version:

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

24 lines (23 loc) 778 B
import { OnInit } from '@angular/core'; import { ElementService, ElementDataUpdate } from '../service/element.service'; import { MatCheckboxChange, MatDialog } from '@angular/material'; export interface List { Value: string; Label: string; } export interface Sets { AdditionSet?: string; AdditionWhere?: string; BeforeSQL?: string; } export declare class SetPropertyUpdateComponent implements OnInit { elementSvr: ElementService; dialog: MatDialog; hostClass: boolean; svr: ElementDataUpdate; constructor(elementSvr: ElementService, dialog: MatDialog); selectChecked(event: MatCheckboxChange): void; openSetDialog(): void; openListDialog(selected: boolean, list?: List[]): void; ngOnInit(): void; }