UNPKG

laravel-jstools

Version:

JS tools for building front-side of Laravel applications

13 lines (12 loc) 556 B
import { Service } from 'laravel-jstools-di'; import { NotyDataInterface } from '../../../../../services/NotyService/interfaces/NotyDataInterface'; import { NotyServiceContract } from '../../../../../services/NotyService/contracts/NotyServiceContract'; export declare class ToastNotyService extends Service implements NotyServiceContract { private containerId; private tools; private containerEl; constructor(containerId: string, tools: any); show(data: NotyDataInterface): void; private generateId; private html; }