UNPKG

harperdb

Version:

HarperDB is a distributed database, caching service, streaming broker, and application development platform focused on performance and ease of use.

9 lines (8 loc) 290 B
/** * represents the operation function object used for get operation */ export declare class OperationFunctionObject { operation_function: Function; job_operation_function: Function | undefined; constructor(operation_function: Function, job_operation_function?: Function); }