UNPKG

socket.io-ts-controllers

Version:
14 lines (13 loc) 332 B
/** * Controller action type. */ export declare type ActionType = "message" | "connection" | "disconnection" | "packet"; /** * Static access to action types. */ export declare class ActionTypes { static MESSAGE: ActionType; static CONNECT: ActionType; static DISCONNECT: ActionType; static PACKET: ActionType; }