UNPKG

@hashgraph/solo

Version:

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

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