Skip to content

Commit b70cb5c

Browse files
author
Diogo Soares
committed
fix: update decoded data param types
1 parent 221a5d5 commit b70cb5c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/types/decoded-data.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ export type DecodedDataRequest = {
22
data: string
33
}
44

5+
type ParamValue = string | ParamValue[]
6+
57
export type DecodedDataBasicParameter = {
68
name: string
79
type: string
8-
value: string
10+
value: ParamValue
911
}
12+
1013
export type DecodedDataParameterValue = {
1114
operation: 0 | 1
1215
to: string

0 commit comments

Comments
 (0)