w3-store
Version:
web3.storage upload service
19 lines • 579 B
TypeScript
export * from "./capability.js";
export function create({ keypair, db }: {
keypair: string;
db?: Provider.DB | undefined;
}): API.ConnectionView<{
identity: API.Identity.Identity;
}>;
export function connect({ id, url, transport, fetch, method, }: {
id: API.DID;
url: URL;
method?: string | undefined;
fetch?: any;
transport?: API.OutpboundTranpsortOptions | undefined;
}): API.ConnectionView<{
identity: API.Identity.Identity;
}>;
import * as Provider from "./provider.js";
import * as API from "../type.js";
//# sourceMappingURL=lib.d.ts.map