import { Observable } from 'rxjs'; import { NotificationInterface } from '../../models/notification/notification.interface'; export interface NotificationServiceInterface { watch(): Observable; add(title: string, text: string, type: string): void; delete(index: number): void; showValidationError(fields: any): void; } //# sourceMappingURL=notification-service.interface.d.ts.map