UNPKG

@squidcloud/client

Version:

A typescript implementation of the Squid client

5 lines (4 loc) 303 B
/** Squid client connection state. Can be 'CONNECTED', 'DISCONNECTED', or 'REMOVED'. */ export declare const CLIENT_CONNECTION_STATES: readonly ["CONNECTED", "DISCONNECTED", "REMOVED"]; /** Squid client connection state. */ export type ClientConnectionState = (typeof CLIENT_CONNECTION_STATES)[number];