import { type RealtimeDecofileProvider } from "https://deno.land/x/deco@1.107.0/engine/decofile/realtime.ts";
Methods
get(): PromiseLike<{ data: VersionedDecofile | null; error: any; }>
subscribe(onChange: (arg: VersionedDecofile) => void, cb: (status: string, err?: Error) => void): void
When called, receives the onChange
function that will be called when the decofile has changed,
and the cb
function that will be called when the subscription state change. The cb function can be used to determine if it should fallsback to background updates or not.