inet-ui
Version:
iNet Angular UI === [![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][downloads-url]
19 lines (18 loc) • 794 B
TypeScript
import { Observable } from 'rxjs';
import { HttpClientService } from "inet-core";
import { ToastrService } from "./toastr/toastr.service";
import { ToastContainerDirective } from "./toastr/toast.directive";
import * as i0 from "@angular/core";
export declare class NotifyService {
private http;
private toastService;
toastContainer?: ToastContainerDirective;
private url;
constructor(http: HttpClientService, toastService: ToastrService);
count(): Observable<Object>;
getMessage(params: any): Observable<Object>;
showMessage(msg: string, type?: string, title?: string, config?: any): void;
getNotifyService(): ToastrService;
static ɵfac: i0.ɵɵFactoryDeclaration<NotifyService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<NotifyService>;
}