Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RealtimeClientOptions

type RealtimeClientOptions = {
transport?: WebSocketLikeConstructor;
timeout?: number;
heartbeatIntervalMs?: number;
logger?: Function;
encode?: Function;
decode?: Function;
reconnectAfterMs?: Function;
headers?: {
[key: string]: string;
}
;
params?: {
[key: string]: any;
}
;
log_level?:
| "info"
| "debug"
| "warn"
| "error";
fetch?: Fetch;
}
;

§Type

§
{
transport?: WebSocketLikeConstructor;
timeout?: number;
heartbeatIntervalMs?: number;
logger?: Function;
encode?: Function;
decode?: Function;
reconnectAfterMs?: Function;
headers?: {
[key: string]: string;
}
;
params?: {
[key: string]: any;
}
;
log_level?:
| "info"
| "debug"
| "warn"
| "error";
fetch?: Fetch;
}
[src]