bsp-network
Version:
SDK for writing node.js applications to interact with bsp network. This package encapsulates the APIs to connect to a bsp network, submit transactions and perform queries against the ledger.
15 lines (14 loc) • 383 B
TypeScript
/**
* Copyright 2018 IBM All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
import { FabricError, FabricErrorInfo } from './fabricerror';
/**
* Error indicating a timeout.
* @extends module:fabric-network.FabricError
* @memberof module:fabric-network
*/
export declare class TimeoutError extends FabricError {
constructor(info?: string | FabricErrorInfo);
}