ngx-sp-infra
Version:
Biblioteca de utilitários da Infra.
18 lines (17 loc) • 878 B
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { BsModalRef, BsModalService } from 'ngx-bootstrap/modal';
import { alertTypes } from '../message-enum';
import * as i0 from "@angular/core";
export declare class AlertComponent implements OnInit, OnDestroy {
_bsModalRef: BsModalRef;
_bsModalService: BsModalService;
message?: string;
type?: alertTypes;
id: number;
constructor(_bsModalRef: BsModalRef, _bsModalService: BsModalService);
ngOnInit(): void;
ngOnDestroy(): void;
closeAlert(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "app-alert", never, { "message": { "alias": "message"; "required": false; }; "type": { "alias": "type"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
}