UNPKG

dbweb-common

Version:

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

21 lines (20 loc) 754 B
import { CdkDragDrop } from '@angular/cdk/drag-drop'; import { OnInit } from '@angular/core'; import { ThemeService } from '../../../services/theme.service'; import { ElementDataRecordView, ElementService } from '../../service/element.service'; export declare class ParamsRecordviewFetchSQLComponent implements OnInit { elementSvr: ElementService; theme: ThemeService; hostClass: boolean; svr: ElementDataRecordView; constructor(elementSvr: ElementService, theme: ThemeService); options: any; dataColumns: boolean; startCheck: boolean; messageShow: boolean; ngOnInit(): void; genSQL(): void; rebuildColumns(): void; drop(event: CdkDragDrop<string[]>): void; checkSQL(): void; }