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.
abp/npm/ng-packs/dist/account/lib/components/tenant-box/tenant-box.component.d.ts

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;
}