eos-common
Advanced tools
Comparing version 0.7.5 to 0.7.6
@@ -208,14 +208,7 @@ import { Sym } from "./symbol"; | ||
* | ||
* asset("1.0000 EOS") | ||
* const quantity = asset( "1.0000 EOS" ) | ||
* asset( quantity ) | ||
*/ | ||
(asset?: string): Asset; | ||
(asset?: Asset | string): Asset; | ||
/** | ||
* Asset | ||
* | ||
* @example | ||
* | ||
* asset( asset("1.0000 EOS") ) | ||
*/ | ||
(asset?: Asset): Asset; | ||
/** | ||
* Amount & Sym | ||
@@ -222,0 +215,0 @@ * |
@@ -78,25 +78,11 @@ import { SymbolCode } from "./symbol_code"; | ||
/** | ||
* Symbol | ||
* Symbol & String & Raw | ||
* | ||
* @example | ||
* | ||
* symbol( symbol("4,EOS") ) | ||
*/ | ||
(sym?: Sym): Sym; | ||
/** | ||
* String | ||
* | ||
* @example | ||
* | ||
* symbol("4,EOS") | ||
*/ | ||
(sym?: string): Sym; | ||
/** | ||
* Raw | ||
* | ||
* @example | ||
* | ||
* const sym = symbol("4,EOS") | ||
* symbol( sym ) | ||
* symbol( 0 ) | ||
*/ | ||
(sym?: number | BigInteger): Sym; | ||
(sym?: Sym | string | number | BigInteger): Sym; | ||
/** | ||
@@ -103,0 +89,0 @@ * SymbolCode & Precision |
{ | ||
"name": "eos-common", | ||
"version": "0.7.5", | ||
"version": "0.7.6", | ||
"description": "EOSIO Smart Contract common library used for Typescript", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
92547
2061