UNPKG
@findeth/abi
Version:
latest (0.7.1)
0.7.1
0.7.0
0.6.1
0.6.0
0.5.2
0.5.1
0.5.0
0.4.1
0.4.0
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
A tiny Solidity ABI encoder and decoder
github.com/FindETH/abi
FindETH/abi
@findeth/abi
/
typings
/
parsers
/
array.d.ts
10 lines
(9 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
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
[]>;