UNPKG

@test-org122/hypernet-core

Version:

Hypernet Core. Represents the SDK for running the Hypernet Protocol.

10 lines 401 B
import { ResultAsync } from "@interfaces/objects"; import { LogicalError } from "@interfaces/objects/errors"; import { HypernetConfig } from "@interfaces/objects/HypernetConfig"; /** * @todo What is the main role/purpose of this class? Description here. */ export interface IConfigProvider { getConfig(): ResultAsync<HypernetConfig, LogicalError>; } //# sourceMappingURL=IConfigProvider.d.ts.map