-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
82 lines (69 loc) · 1.93 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
export * from './src/types.js';
/**
* This module provides utility functions for working knowledge graph
* identifiers in TypeScript.
*
* @since 0.0.6
*/
export * as ID from './src/id.js';
/**
* This module provides utility functions for working with base58 ids
* in TypeScript.
*
* @since 0.0.6
*/
export { BASE58_ALLOWED_CHARS, decodeBase58ToUUID, encodeBase58 } from './src/core/base58.js';
export {
getAcceptEditorArguments,
getAcceptSubspaceArguments,
getCalldataForSpaceGovernanceType,
getProcessGeoProposalArguments,
getRemoveEditorArguments,
getRemoveSubspaceArguments,
} from './src/encodings/index.js';
/**
* This module provides utility functions for working with knowledge graph
* images in TypeScript.
*
* @since 0.0.6
*/
export { Account } from './src/account.js';
export { TextBlock, DataBlock, ImageBlock } from './src/blocks.js';
/**
* This module provides utility functions for working with knowledge graph
* images in TypeScript.
*
* @since 0.0.6
*/
export { Image } from './src/image.js';
export { Position, PositionRange } from './src/position.js';
/**
* This module provides utility functions for working with Triples in TypeScript.
*
* @since 0.0.6
*/
export { Triple } from './src/triple.js';
/**
* This module provides utility functions for working with Relations in TypeScript.
*
* @since 0.0.6
*/
export { Relation } from './src/relation.js';
/**
* This module provides utility functions for working with Graph URIs in TypeScript.
*
* @since 0.0.6
*/
export { GraphUrl } from './src/scheme.js';
/**
* Provides ids for commonly used entities across the Knowledge Graph.
*/
export { SYSTEM_IDS, NETWORK_IDS, CONTENT_IDS } from './src/system-ids.js';
export { getChecksumAddress } from './src/core/get-checksum-address.js';
/**
* This module provides utility functions for interacting with the default
* IPFS gateway in TypeScript.
*
* @since 0.1.1
*/
export * as IPFS from './src/ipfs.js';