@buzzr/dfs-engine
    Preparing search index...

    Interface SettlementStore

    interface SettlementStore {
        id: string;
        loadSettlement?(
            entryId: string,
        ): DfsSettlementResult | Promise<DfsSettlementResult | null> | null;
        saveSettlement?(
            result: DfsSettlementResult,
        ): void | Promise<void | { revision?: string }> | { revision?: string };
    }
    Index

    Properties

    id: string

    Methods