UNPKG

@mixxtor/adonisjs-pusher

Version:

AdonisJS provider for Pusher real-time messaging

11 lines (10 loc) 245 B
import type Pusher from 'pusher'; import type { Options } from 'pusher'; export type PusherConfig = Options & { [key: string]: any; }; declare module '@adonisjs/core/types' { interface ContainerBindings { pusher: Pusher; } }