UNPKG

@ethicdevs/react-global-state-hooks-debugger

Version:

A small websocket based debugger for use with the react-global-state-hooks library

9 lines (8 loc) 262 B
export declare type ProtocolPacket = [string, number, string]; export declare enum ProtocolPacketKind { Unknown = 0, Attach = "attach", Dettach = "dettach", Tail = "tail" } export declare function serializePacket(packet: ProtocolPacket): string;