@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
15 lines (14 loc) • 931 B
TypeScript
import { SchemaDefinitionBase } from '../../api/schema-definition-base.js';
import { type SchemaDefinition } from '../../api/schema-definition.js';
import { RemoteConfigSchema } from '../../../model/remote/remote-config-schema.js';
import { type ClassConstructor } from '../../../../../business/utils/class-constructor.type.js';
import { type SchemaMigration } from '../../api/schema-migration.js';
import { type SemanticVersion } from '../../../../../business/utils/semantic-version.js';
import { type ObjectMapper } from '../../../../mapper/api/object-mapper.js';
export declare class RemoteConfigSchemaDefinition extends SchemaDefinitionBase<RemoteConfigSchema> implements SchemaDefinition<RemoteConfigSchema> {
constructor(mapper: ObjectMapper);
get name(): string;
get version(): SemanticVersion<number>;
get classConstructor(): ClassConstructor<RemoteConfigSchema>;
get migrations(): SchemaMigration[];
}