dbweb-common
Version:
用`yarn add dbweb-common`安装,不要忘记修改`angular.json`里的 `architect\build\options\assets`,加上
14 lines (13 loc) • 536 B
TypeScript
import { OnInit } from '@angular/core';
import { ElementService, ElementDataImport } from '../../service/element.service';
import { ImportField } from '../../service/import-param';
import { CdkDragDrop } from '@angular/cdk/drag-drop';
export declare class ImportFieldComponent implements OnInit {
elementSvr: ElementService;
hostClass: boolean;
svr: ElementDataImport;
titles: string[];
constructor(elementSvr: ElementService);
drop(event: CdkDragDrop<ImportField[]>): void;
ngOnInit(): void;
}