@dicdikshaorg/epub-player-v9
Version:
Contains Epub player library components powered by angular. These components are designed to be used in sunbird consumption platforms *(mobile app, web portal, offline desktop app)* to drive reusability, maintainability hence reducing the redundant develo
14 lines (13 loc) • 429 B
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { ToastrService } from '../services/toastService/toastr.service';
export declare class ToastrComponent implements OnInit, OnDestroy {
private toastrService;
toastr: {
message: string;
type: string;
}[];
private toastSubscription;
constructor(toastrService: ToastrService);
ngOnInit(): void;
ngOnDestroy(): void;
}