Type Alias ICircuitBreakerStorageAdapterTransaction<TType>

ICircuitBreakerStorageAdapterTransaction: {
    find(key: string): Promise<null | TType>;
    upsert(key: string, state: TType): Promise<void>;
}

IMPORT_PATH: "@daiso-tech/core/circuit-breaker/contracts"

Type Parameters

  • TType = unknown

Type declaration