UNPKG

@hashgraph/solo

Version:

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

10 lines (9 loc) 452 B
import { type HelmChartSchema } from '../common/helm-chart-schema.js'; import { SemanticVersion } from '../../../../business/utils/semantic-version.js'; export declare class BlockNodeConfigSchema { static readonly SCHEMA_VERSION: SemanticVersion<number>; static readonly EMPTY: BlockNodeConfigSchema; schemaVersion: number; helmChart: HelmChartSchema | undefined; constructor(schemaVersion?: number, helmChart?: HelmChartSchema); }