Skip to main content
Module

x/earthstar/src/entries/npm.ts>RangeMessage

Storage for private, distributed, offline-first applications.
Go to Latest
type alias RangeMessage
import { type RangeMessage } from "https://deno.land/x/earthstar@v10.0.2/src/entries/npm.ts";
definition:
| { type: "EMPTY_SET"; canRespond: boolean; }
| { type: "LOWER_BOUND"; value: DocThumbnail; }
| { type: "PAYLOAD"; payload: DocThumbnail; end?: { canRespond: boolean; upperBound: DocThumbnail; }; }
| { type: "EMPTY_PAYLOAD"; upperBound: DocThumbnail; }
| { type: "FINGERPRINT"; fingerprint: string; upperBound: DocThumbnail; }
| { type: "DONE"; upperBound: DocThumbnail; }
| { type: "TERMINAL"; }