UNPKG

@test-org122/hypernet-core

Version:

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

11 lines (9 loc) 355 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>; }