@pouchy_ai/companion-sdk - v0.1.0
    Preparing search index...

    Interface OutboxStore

    Pluggable persistence for the offline send queue (the outboxStore option). Both methods receive the storage key (pouchy-outbox:${surface}); load returns the previously-saved value or null.

    interface OutboxStore {
        load(key: string): string | null;
        save(key: string, value: string): void;
    }
    Index
    • Parameters

      • key: string

      Returns string | null

    • Parameters

      • key: string
      • value: string

      Returns void