11export * from './src/types.js' ;
22
3+ /**
4+ * This module provides utility functions for working knowledge graph
5+ * identifiers in TypeScript.
6+ *
7+ * @since 0.0.6
8+ */
39export * as ID from './src/id.js' ;
10+
11+ /**
12+ * This module provides utility functions for working with base58 ids
13+ * in TypeScript.
14+ *
15+ * @since 0.0.6
16+ */
417export { BASE58_ALLOWED_CHARS , decodeBase58ToUUID , encodeBase58 } from './src/core/base58.js' ;
18+
519export {
620 getAcceptEditorArguments ,
721 getAcceptSubspaceArguments ,
@@ -10,12 +24,51 @@ export {
1024 getRemoveEditorArguments ,
1125 getRemoveSubspaceArguments ,
1226} from './src/encodings/index.js' ;
27+
28+ /**
29+ * This module provides utility functions for working with knowledge graph
30+ * images in TypeScript.
31+ *
32+ * @since 0.0.6
33+ */
1334export { Account } from './src/account.js' ;
14- export { TextBlock , DataBlock } from './src/blocks.js' ;
35+
36+ export { TextBlock , DataBlock , ImageBlock } from './src/blocks.js' ;
37+
38+ /**
39+ * This module provides utility functions for working with knowledge graph
40+ * images in TypeScript.
41+ *
42+ * @since 0.0.6
43+ */
1544export { Image } from './src/image.js' ;
45+
1646export { Position , PositionRange } from './src/position.js' ;
47+
48+ /**
49+ * This module provides utility functions for working with Triples in TypeScript.
50+ *
51+ * @since 0.0.6
52+ */
1753export { Triple } from './src/triple.js' ;
54+
55+ /**
56+ * This module provides utility functions for working with Relations in TypeScript.
57+ *
58+ * @since 0.0.6
59+ */
1860export { Relation } from './src/relation.js' ;
61+
62+ /**
63+ * This module provides utility functions for working with Graph URIs in TypeScript.
64+ *
65+ * @since 0.0.6
66+ */
1967export { GraphUrl } from './src/scheme.js' ;
68+
69+ /**
70+ * Provides ids for commonly used entities across the Knowledge Graph.
71+ */
2072export { SYSTEM_IDS , NETWORK_IDS , CONTENT_IDS } from './src/system-ids.js' ;
73+
2174export { getChecksumAddress } from './src/core/get-checksum-address.js' ;
0 commit comments