UNPKG

@test-org122/hypernet-core

Version:

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

8 lines (6 loc) 260 B
import { VectorError } from "@interfaces/objects/errors"; import { IBrowserNode } from "@interfaces/utilities"; import { ResultAsync } from "neverthrow"; export interface IBrowserNodeFactory { factoryBrowserNode(): ResultAsync<IBrowserNode, VectorError>; }