UNPKG

@geheimgang188/fmod-service-api

Version:
13 lines (12 loc) 326 B
import { ITypedEmitter } from './i-typed-emitter'; export interface ConnectionEvents { 'connect': () => void; 'disconnect': () => void; 'reconnect': () => void; } export interface IConnect { connect(): void; disconnect(): void; } export interface IConnectEvents extends ITypedEmitter<ConnectionEvents> { }