@ecip/app
Version:
22 lines (21 loc) • 789 B
TypeScript
import { OnInit } from '@angular/core';
import { _HttpClient, ModalHelper } from '@delon/theme';
import { STColumn, STComponent } from '@delon/abc';
import { SFSchema } from '@delon/form';
import { NzMessageService } from 'ng-zorro-antd';
import { CacheService } from "@delon/cache";
import { DictService } from "@ecip/service";
export declare class AppAppsComponent implements OnInit {
private http;
private modal;
private msgSrv;
private cacheService;
dictService: DictService;
url: string;
searchSchema: SFSchema;
st: STComponent;
columns: STColumn[];
constructor(http: _HttpClient, modal: ModalHelper, msgSrv: NzMessageService, cacheService: CacheService, dictService: DictService);
ngOnInit(): void;
add(): void;
}