Skip to content

Commit

Permalink
Fix using TokenValue as prop in Vue
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexagon committed Oct 9, 2023
1 parent 4664772 commit 4a87782
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everscale-inpage-provider",
"version": "0.3.62",
"version": "0.3.63",
"description": "Web3-like interface to the Everscale blockchain",
"repository": "https://github.com/broxus/everscale-inpage-provider",
"main": "dist/index.js",
Expand Down
3 changes: 2 additions & 1 deletion src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,12 +322,13 @@ export type AbiVersion = '1.0' | '2.0' | '2.1' | '2.2' | '2.3';
/**
* @category Models
*/
// NOTE: `boolean` must be after `string` due to JS being itself - https://github.com/vuejs/core/issues/9253
export type TokenValue<Addr = Address> =
| null
| boolean
| string
| number
| Addr
| boolean
| { [K in string]: TokenValue<Addr> }
| TokenValue<Addr>[]
| (readonly [TokenValue<Addr>, TokenValue<Addr>])[];
Expand Down

0 comments on commit 4a87782

Please sign in to comment.