UNPKG

ps2census

Version:

Client to connect to the PS2 Event Stream websocket.

12 lines (11 loc) 401 B
import { CharacterEvent } from './base/character.event'; import { PS2Events } from '../../stream'; import { Faction } from '../constants'; export declare class FishScan extends CharacterEvent<PS2Events.FishScan> { readonly emit = "fishScan"; readonly event_name: 'FishScan'; readonly fish_id: string; readonly loadout_id: string; readonly team_id: Faction; toHash(): string; }