UNPKG

ngx-extended-pdf-viewer

Version:

Embedding PDF files in your Angular application. Highly configurable viewer including the toolbar, sidebar, and all the features you're used to.

7 lines (6 loc) 265 B
export interface IEventBus { _listeners: Map<string, (event: any) => void>; on(eventName: string, listener: (event: any) => void): any; off(eventName: string, listener: (event: any) => void): any; dispatch(eventName: string, options?: any): void; }