@noaestudio/forms
Version:
Dynamic forms extension for Covalent
14 lines (13 loc) • 467 B
TypeScript
import { OnInit } from '@angular/core';
import { MatDialogRef } from '@angular/material';
export declare class OrganizationDialogComponent implements OnInit {
dialogRef: MatDialogRef<OrganizationDialogComponent>;
data: any;
title: string;
name: string;
residente: boolean;
showResident: boolean;
constructor(dialogRef: MatDialogRef<OrganizationDialogComponent>, data: any);
changeResident(resident: any): void;
ngOnInit(): void;
}