UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

9 lines (8 loc) 398 B
import { SoloError } from '../solo-error.js'; import { ErrorOwnership } from '../error-ownership.js'; import { type DeploymentName } from '../../../types/index.js'; export declare class DeploymentAlreadyExistsSoloError extends SoloError { protected readonly retryable: boolean; protected readonly ownership: ErrorOwnership; constructor(deploymentName: DeploymentName, cause?: Error); }