@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines (15 loc) • 884 B
TypeScript
import { DeploymentSchema } from './deployment-schema.js';
import { UserIdentitySchema } from '../common/user-identity-schema.js';
import { SemanticVersion } from '../../../../business/utils/semantic-version.js';
import { ApplicationVersionsSchema } from '../common/application-versions-schema.js';
import { type ClusterReferences } from '../../../../types/index.js';
export declare class LocalConfigSchema {
static readonly SCHEMA_VERSION: SemanticVersion<number>;
static readonly EMPTY: LocalConfigSchema;
schemaVersion: number;
versions: ApplicationVersionsSchema;
userIdentity: UserIdentitySchema;
deployments: DeploymentSchema[];
clusterRefs: ClusterReferences;
constructor(schemaVersion?: number, versions?: ApplicationVersionsSchema, deployments?: DeploymentSchema[], clusterReferences?: ClusterReferences, userIdentity?: UserIdentitySchema);
}