UNPKG

@test-org122/hypernet-core

Version:

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

14 lines 656 B
import { NodeError } from "@connext/vector-types"; import { ILinkService } from "@interfaces/business"; import { ILinkRepository } from "@interfaces/data"; import { HypernetLink, ResultAsync } from "@interfaces/objects"; import { CoreUninitializedError, RouterChannelUnknownError } from "@interfaces/objects/errors"; export declare class LinkService implements ILinkService { protected linkRepository: ILinkRepository; constructor(linkRepository: ILinkRepository); /** * */ getLinks(): ResultAsync<HypernetLink[], RouterChannelUnknownError | CoreUninitializedError | NodeError | Error>; } //# sourceMappingURL=LinkService.d.ts.map