AppleSauce
    Preparing search index...

    Interface IAsyncEventStoreActions

    The async actions for an event store

    interface IAsyncEventStoreActions {
        add(event: NostrEvent): Promise<NostrEvent | null>;
        remove(event: string | NostrEvent): Promise<boolean>;
        update(event: NostrEvent): Promise<void>;
    }

    Hierarchy (View Summary)

    Index

    Methods

    Methods