@leofcoin/codec-format-interface 1.6.9 → 1.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import basicInterface from './basic-interface.js';
|
|
|
2
2
|
import formatInterface from './codec-format-interface.js';
|
|
3
3
|
import codecHash from './codec-hash.js';
|
|
4
4
|
import codec from './codec.js';
|
|
5
|
+
export { codecs } from '@leofcoin/codecs';
|
|
5
6
|
export declare const BasicInterface: typeof basicInterface;
|
|
6
7
|
export declare const FormatInterface: typeof formatInterface;
|
|
7
8
|
export declare const CodecHash: typeof codecHash;
|
package/dist/index.js
CHANGED
|
@@ -5,6 +5,7 @@ import { fromBase58, fromHex, toHex, toBase32, toBase58 } from '@vandeurenglenn/
|
|
|
5
5
|
import { createKeccak } from 'hash-wasm';
|
|
6
6
|
import varint from 'varint';
|
|
7
7
|
import { utils } from '@leofcoin/codecs';
|
|
8
|
+
export { codecs } from '@leofcoin/codecs';
|
|
8
9
|
|
|
9
10
|
/**
|
|
10
11
|
* @param {string}
|