UNPKG

@erikyuzwa/rogue-punk

Version:

a JavaScript library to help you build your roguelike adventures

12 lines (11 loc) 335 B
import { Glyph } from './Glyph'; import { GlyphOptions } from './GlyphOptions'; export declare class Emitter extends Glyph { private name; private listeners; constructor(options: GlyphOptions); setName(name: string): void; getName(): string; toString(): string; raiseEvent(event: any): any[] | undefined; }