aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/hdkey
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-05-31 02:35:22 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-06-01 01:20:36 +0800
commit1a3958ed602a2abd55a41289fddd2ee1d930d159 (patch)
tree9dc87614d7c051d7306816eed336dfbb4c70e9c2 /packages/typescript-typings/types/hdkey
parent743c957918be109defc96b5243cf82d5c2542b39 (diff)
downloaddexon-sol-tools-1a3958ed602a2abd55a41289fddd2ee1d930d159.tar
dexon-sol-tools-1a3958ed602a2abd55a41289fddd2ee1d930d159.tar.gz
dexon-sol-tools-1a3958ed602a2abd55a41289fddd2ee1d930d159.tar.bz2
dexon-sol-tools-1a3958ed602a2abd55a41289fddd2ee1d930d159.tar.lz
dexon-sol-tools-1a3958ed602a2abd55a41289fddd2ee1d930d159.tar.xz
dexon-sol-tools-1a3958ed602a2abd55a41289fddd2ee1d930d159.tar.zst
dexon-sol-tools-1a3958ed602a2abd55a41289fddd2ee1d930d159.zip
Remove some types
Diffstat (limited to 'packages/typescript-typings/types/hdkey')
-rw-r--r--packages/typescript-typings/types/hdkey/index.d.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/packages/typescript-typings/types/hdkey/index.d.ts b/packages/typescript-typings/types/hdkey/index.d.ts
deleted file mode 100644
index 84b751bd7..000000000
--- a/packages/typescript-typings/types/hdkey/index.d.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-declare module 'hdkey' {
- class HDNode {
- public static fromMasterSeed(seed: Buffer): HDNode;
- public publicKey: Buffer;
- public privateKey: Buffer;
- public chainCode: Buffer;
- public constructor();
- public derive(path: string): HDNode;
- }
- export = HDNode;
-}