dbweb-common
Version:
用`yarn add dbweb-common`安装,不要忘记修改`angular.json`里的 `architect\build\options\assets`,加上
14 lines (13 loc) • 499 B
TypeScript
import { OnInit, ElementRef } from '@angular/core';
import { MatDialogRef } from '@angular/material';
import { List } from '../set-property-update.component';
export declare class ListParamsComponent implements OnInit {
dialogRef: MatDialogRef<ListParamsComponent>;
lists?: List[];
hostClass: boolean;
列表设置: ElementRef;
type: string;
listTxt: string;
constructor(dialogRef: MatDialogRef<ListParamsComponent>, lists?: List[]);
ngOnInit(): void;
}