noob-ethereum
Version:
A simple Ethereum library
6 lines • 353 B
TypeScript
declare type Input = string | number | bigint | Uint8Array | Array<Input> | null | undefined | any;
declare type NestedUint8Array = Array<Uint8Array | NestedUint8Array>;
declare function encode(input: Input): Uint8Array;
declare function decode(encoded: Input): Uint8Array | NestedUint8Array;
export { encode, decode };
//# sourceMappingURL=rlp.d.ts.map