Interface OperationRegistrySlot

interface OperationRegistrySlot {
    operation: Operation;
    result: OperationResult;
    status: boolean | "pending";
    timestamp: number;
}

Properties

operation: Operation
status: boolean | "pending"
timestamp: number