AppleSauce
    Preparing search index...

    Interface IAsyncEventStoreActions

    The async actions for an event store

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

    Hierarchy (View Summary)

    Index

    Methods

    Methods