@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
18 lines (17 loc) • 608 B
TypeScript
import { type KindClientBuilder } from '../kind-client-builder.js';
import { type KindClient } from '../kind-client.js';
export declare class DefaultKindClientBuilder implements KindClientBuilder {
/**
* The path to the Kind executable.
* @private
*/
private _executable;
constructor();
/**
* Set the Kind executable path.
* @param executable The path to the Kind executable.
* @returns This builder instance for method chaining.
*/
executable(executable: string): DefaultKindClientBuilder;
build(skipVersionCheck?: boolean): Promise<KindClient>;
}