UNPKG

@useorbis/db-sdk

Version:

Orbis' Typescript SDK for building open-data experiences.

19 lines (18 loc) 414 B
import type { CeramicClient } from "@ceramicnetwork/http-client"; import { StoreConfig } from "./util.js"; export type CeramicConfig = { gateway: string; } | { client: CeramicClient; }; type OrbisNodeConfig = { gateway: string; key?: string; env?: string; }; export type OrbisConfig = { nodes: Array<OrbisNodeConfig>; ceramic: CeramicConfig; localStore?: StoreConfig; }; export {};