-
Notifications
You must be signed in to change notification settings - Fork 0
/
js.d.ts
42 lines (34 loc) · 1.02 KB
/
js.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
declare module "@digitalbazaar/vc" {
export function defaultDocumentLoader(url: string): any;
export function issue(params: any): any;
export function verifyCredential(options: any): any;
}
declare module "jsonld-signatures" {
export function extendContextLoader(extension: (string) => any);
}
declare module "@digitalbazaar/data-integrity" {
export class DataIntegrityProof {
constructor(options: any);
verificationMethod: string;
}
}
declare module "@digitalbazaar/data-integrity-context" {
export const CONTEXT: object;
export const CONTEXT_URL: string;
}
declare module "@digitalbazaar/ed25519-multikey" {}
declare module "@digitalbazaar/eddsa-rdfc-2022-cryptosuite" {
export const cryptosuite: object;
}
declare module "jsonld" {
export const documentLoaders: { node: () => any };
}
declare module "@digitalbazaar/credentials-context" {
export const named: Map;
}
declare module "@digitalbazaar/did-io" {
export class CachedResolver {
constructor(options: any);
get(options: any);
}
}