@wjya/ngx-webapp-icpc.group.pms
Version:
angular webapp : icpc.group.pms
24 lines (23 loc) • 894 B
TypeScript
import { DataSourceHelper } from '../service/data-source.helper';
import { OnInit, EventEmitter } from '@angular/core';
import { FormGroup, FormBuilder, FormControl } from '@angular/forms';
import { UserStorageService } from '@wjya/ngx-webapp-fx';
export declare class CarparkDialogComponent implements OnInit {
private fb;
private dataSourceHelper;
private userStorageService;
clickSave: EventEmitter<any>;
validateForm: FormGroup;
private dataSource;
modalIsVisible: boolean;
private communityGroupId;
options: Array<any>;
data: any;
constructor(fb: FormBuilder, dataSourceHelper: DataSourceHelper, userStorageService: UserStorageService);
ngOnInit(): void;
getFormControl(name: any): FormControl;
setFormValue(dataRow: any): void;
handleCancel(): void;
onSave(value: any): void;
resetForm(): void;
}