import { NgbModal, NgbModalRef } from "@ng-bootstrap/ng-bootstrap";

export interface ModalInterface {
    modalService: NgbModal;
    modalComponent: NgbModalRef;
    openModal(): void;
    closeModal(): void;
    setData(data: any): void;
}

export interface ModalServiceConfig {
    component: ModalInterface,
    data: any,
    showModal: boolean
}
