UNPKG

nwjs-builder-phoenix

Version:

A possible solution to build and package a ready for distribution NW.js app for Windows, macOS and Linux.

8 lines (7 loc) 248 B
export declare class Event<TArgs> { listeners: Array<(args: TArgs) => void>; constructor(name: string); subscribe(fn: ((args: TArgs) => void)): void; trigger(args: TArgs): void; unsubscribe(fn: ((args: TArgs) => void)): void; }