aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/globals.d.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-05-25 18:28:28 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-05-25 18:28:28 +0800
commit00a16b37e0bd3a394285cd887e8678fb7eb19149 (patch)
treeb16ec3599e6451e8150759f0cd68ce02d707edb5 /src/ts/globals.d.ts
parent5be5debdf1122d7f9767fa7e5cd23a23d91bf93c (diff)
downloaddexon-0x-contracts-00a16b37e0bd3a394285cd887e8678fb7eb19149.tar
dexon-0x-contracts-00a16b37e0bd3a394285cd887e8678fb7eb19149.tar.gz
dexon-0x-contracts-00a16b37e0bd3a394285cd887e8678fb7eb19149.tar.bz2
dexon-0x-contracts-00a16b37e0bd3a394285cd887e8678fb7eb19149.tar.lz
dexon-0x-contracts-00a16b37e0bd3a394285cd887e8678fb7eb19149.tar.xz
dexon-0x-contracts-00a16b37e0bd3a394285cd887e8678fb7eb19149.tar.zst
dexon-0x-contracts-00a16b37e0bd3a394285cd887e8678fb7eb19149.zip
Remove HexString type
Diffstat (limited to 'src/ts/globals.d.ts')
-rw-r--r--src/ts/globals.d.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ts/globals.d.ts b/src/ts/globals.d.ts
index 9b81e15bd..c9cc0d481 100644
--- a/src/ts/globals.d.ts
+++ b/src/ts/globals.d.ts
@@ -1,12 +1,11 @@
declare type ETHPublicKey = string;
declare type ETHAddressHex = string;
-declare type HexString = string;
declare type ETHAddressBuff = Buffer;
declare module 'ethereumjs-util' {
- const toBuffer: (data: HexString) => Buffer;
+ const toBuffer: (dataHex: string) => Buffer;
const hashPersonalMessage: (msg: Buffer) => Buffer;
- const bufferToHex: (buff: Buffer) => HexString;
+ const bufferToHex: (buff: Buffer) => string;
const ecrecover: (msgHashBuff: Buffer, v: number, r: Buffer, s: Buffer) => ETHPublicKey;
const pubToAddress: (pubKey: ETHPublicKey) => ETHAddressBuff;
}