UNPKG

rwsdk

Version:

Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime

10 lines (9 loc) 375 B
import { type Transport } from "../../client/types"; export declare const initRealtimeClient: ({ key, handleResponse, }?: { key?: string; handleResponse?: (response: Response) => boolean; }) => Promise<void>; export declare const realtimeTransport: ({ key, handleResponse, }: { key?: string; handleResponse?: (response: Response) => boolean; }) => Transport;