solid-ui
Version:
UI library for writing Solid read-write-web applications
9 lines • 602 B
TypeScript
import { NamedNode } from 'rdflib';
export declare const pubKeyUrl: (webId: NamedNode) => any;
export declare const privKeyUrl: (webId: NamedNode) => any;
export declare function getExistingPublicKey(webId: NamedNode, publicKeyUrl: string): Promise<string | undefined>;
export declare function getExistingPrivateKey(webId: NamedNode, privateKeyUrl: string): Promise<string | undefined>;
type KeyType = 'publicKey' | 'privateKey';
export declare function getKeyIfExists(webId: NamedNode, keyUrl: string, keyType: KeyType): Promise<string | undefined>;
export {};
//# sourceMappingURL=accessData.d.ts.map