UNPKG

@crtxio/abi

Version:

A tiny Solidity ABI encoder and decoder

10 lines (9 loc) 262 B
import { Parser } from '../types'; /** * Get the type of the array. * * @param type The type to get the array type for. * @return The array type. */ export declare const getArrayType: (type: string) => string; export declare const array: Parser<unknown[]>;