Skip to content

Commit

Permalink
fix: easy infer of type (#935)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodolfopietro97 authored May 31, 2024
1 parent 54c5501 commit 06e7050
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/core/src/encoding/rlp/kind/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@ import {
/**
* RLP_CODER profile classes.
*/
export const RLPProfiles = {
export const RLPProfiles: {
ScalarKind: typeof ScalarKind;
BufferKind: typeof BufferKind;
NumericKind: typeof NumericKind;
HexBlobKind: typeof HexBlobKind;
FixedHexBlobKind: typeof FixedHexBlobKind;
OptionalFixedHexBlobKind: typeof OptionalFixedHexBlobKind;
CompactFixedHexBlobKind: typeof CompactFixedHexBlobKind;
} = {
ScalarKind,
BufferKind,
NumericKind,
Expand Down

1 comment on commit 06e7050

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Coverage

Summary

Lines Statements Branches Functions
Coverage: 100%
100% (3384/3384) 100% (783/783) 100% (701/701)
Title Tests Skipped Failures Errors Time
core 484 0 💤 0 ❌ 0 🔥 1m 5s ⏱️
network 660 0 💤 0 ❌ 0 🔥 3m 45s ⏱️
errors 48 0 💤 0 ❌ 0 🔥 11.11s ⏱️

Please sign in to comment.