dbweb-common
Version:
用`yarn add dbweb-common`安装,不要忘记修改`angular.json`里的 `architect\build\options\assets`,加上
26 lines (25 loc) • 1.01 kB
TypeScript
import { CdkDragDrop } from '@angular/cdk/drag-drop';
import { OnInit, OnDestroy } from '@angular/core';
import { ElementDataRecordView, ElementService, IProcess } from '../../service/element.service';
import { ElementsService } from 'dbweb-core';
import { MatDialog } from '@angular/material';
import { FormControl } from '@angular/forms';
export declare class ProcessingListsComponent implements OnInit, OnDestroy {
elementSvr: ElementService;
eles: ElementsService;
dialog: MatDialog;
hostClass: boolean;
svr: ElementDataRecordView;
ctrlElementName: FormControl;
filterElemets: string[];
private subs;
constructor(elementSvr: ElementService, eles: ElementsService, dialog: MatDialog);
ngOnDestroy(): void;
ngOnInit(): void;
dropBind(event: CdkDragDrop<IProcess[]>): void;
dropNotBind(event: CdkDragDrop<IProcess[]>): void;
selectProcess(pro: IProcess): void;
add(): void;
delete(): void;
openIconDialog(): void;
}