Variable PersistentStore

PersistentStore: {
    channel?: BroadcastChannel;
    claims: string[];
    clear: (() => void);
    reflects?: string[];
    store: {
        [key: string]: PersistentData;
    };
    version: string;
    write: (() => void);
} = ...

Type declaration

  • Optional channel?: BroadcastChannel
  • claims: string[]
  • clear: (() => void)
      • (): void
      • Returns void

  • Optional reflects?: string[]
  • store: {
        [key: string]: PersistentData;
    }
    • [key: string]: PersistentData
  • version: string
  • write: (() => void)
      • (): void
      • Returns void

Generated using TypeDoc