Skip to content

Commit bee151d

Browse files
committed
chore: export types
1 parent 863b7d9 commit bee151d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/ssz/src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export {ContainerType} from "./type/container";
88
export {ContainerNodeStructType} from "./type/containerNodeStruct";
99
export {ListBasicType} from "./type/listBasic";
1010
export {ListCompositeType} from "./type/listComposite";
11+
export {PartialListCompositeType} from "./type/partialListComposite";
1112
export {NoneType} from "./type/none";
1213
export {UintBigintType, UintNumberType} from "./type/uint";
1314
export {UnionType} from "./type/union";
@@ -34,5 +35,5 @@ export {BitArray, getUint8ByteToBitBooleanArray} from "./value/bitArray";
3435

3536
// Utils
3637
export {fromHexString, toHexString, byteArrayEquals} from "./util/byteArray";
37-
38+
export {Snapshot} from "./util/types";
3839
export {hash64, symbolCachedPermanentRoot} from "./util/merkleize";

packages/ssz/src/util/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export type Require<T, K extends keyof T> = T & Required<Pick<T, K>>;
22

3+
/** Snapshot for PartialListCompositeType */
34
export type Snapshot = {
45
finalized: Uint8Array[];
56
root: Uint8Array;

0 commit comments

Comments
 (0)