UNPKG

@hashgraph/solo

Version:

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

15 lines (14 loc) 924 B
import { type SchemaDefinition } from '../../api/schema-definition.js'; import { LocalConfigSchema } from '../../../model/local/local-config-schema.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'; export declare class LocalConfigSchemaDefinition extends SchemaDefinitionBase<LocalConfigSchema> implements SchemaDefinition<LocalConfigSchema> { constructor(mapper: ObjectMapper); get name(): string; get version(): SemanticVersion<number>; get classConstructor(): ClassConstructor<LocalConfigSchema>; get migrations(): SchemaMigration[]; }