UNPKG

@hashgraph/solo

Version:

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

15 lines (14 loc) 917 B
import { type SchemaDefinition } from '../../api/schema-definition.js'; import { type SemanticVersion } from '../../../../../business/utils/semantic-version.js'; import { type ClassConstructor } from '../../../../../business/utils/class-constructor.type.js'; import { type SchemaMigration } from '../../api/schema-migration.js'; import { type ObjectMapper } from '../../../../mapper/api/object-mapper.js'; import { SchemaDefinitionBase } from '../../api/schema-definition-base.js'; import { SoloConfigSchema } from '../../../model/solo/solo-config-schema.js'; export declare class SoloConfigSchemaDefinition extends SchemaDefinitionBase<SoloConfigSchema> implements SchemaDefinition<SoloConfigSchema> { constructor(mapper: ObjectMapper); get name(): string; get version(): SemanticVersion<number>; get classConstructor(): ClassConstructor<SoloConfigSchema>; get migrations(): SchemaMigration[]; }