mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
510 B
17 lines
510 B
import { TemplateRef } from '@angular/core';
|
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
import { ABP } from '@abp/ng.core';
|
|
export declare class TenantBoxComponent {
|
|
private modalService;
|
|
private fb;
|
|
constructor(modalService: NgbModal, fb: FormBuilder);
|
|
form: FormGroup;
|
|
selected: ABP.BasicItem;
|
|
modalContent: TemplateRef<any>;
|
|
createForm(): void;
|
|
openModal(): void;
|
|
onSwitch(): void;
|
|
save(): void;
|
|
}
|