UNPKG

bitfront-library

Version:

Angular CLI project with components and classes used by other Angular projects of the BIT foundation.

19 lines (18 loc) 895 B
import { Observable } from "rxjs"; import { HttpUtilsService } from "../../../shared/service/http-utils.service"; import { MessageService } from "../../../shared/service/message.service"; import { LogFilter } from "../data/log.filter"; import { BaseCRUDService } from "../../../base/shared/base.service"; import * as i0 from "@angular/core"; export declare class LogService extends BaseCRUDService { protected messageService: MessageService; protected http: HttpUtilsService; private countAllLogsByFilterUrl; private getAllLogsByFilterUrl; private getDominiosLogUrl; constructor(messageService: MessageService, http: HttpUtilsService); getAllByFilter<T>(logFilter: LogFilter): Observable<T>; countAllByFilter(logFilter: LogFilter): Observable<number>; static ɵfac: i0.ɵɵFactoryDef<LogService, never>; static ɵprov: i0.ɵɵInjectableDef<LogService>; }