UNPKG

@hashgraph/solo

Version:

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

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