1export interface LiveLoaderOptions { 2 /** 3 * @description Your repo is either your handle (@you.some.url) or your DID (did:plc... or did:web...). You can find this information using: https://pdsls.dev 4 */ 5 repo: string; 6} 7 8export interface LeafletRecord { 9 id: string; 10 uri: string; 11 cid: string; 12 value: unknown; 13} 14 15export interface MiniDoc { 16 did: string; 17 handle: string; 18 pds: string; 19 signing_key: string; 20}