diff options
author | Cavan <cavan@radarrelay.com> | 2018-06-06 14:01:19 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-06-26 00:58:25 +0800 |
commit | 76f4d67f33af208e83eea5bcfa8802ce0e482901 (patch) | |
tree | 8934b90778897ad9b4e462163e797f6ea16e014c /packages/typescript-typings | |
parent | bb4c748bf1e93d1f2c98514c574ba67678b0ed59 (diff) | |
download | dexon-0x-contracts-76f4d67f33af208e83eea5bcfa8802ce0e482901.tar.gz dexon-0x-contracts-76f4d67f33af208e83eea5bcfa8802ce0e482901.tar.zst dexon-0x-contracts-76f4d67f33af208e83eea5bcfa8802ce0e482901.zip |
Remove timestamps and fix typings
Diffstat (limited to 'packages/typescript-typings')
-rw-r--r-- | packages/typescript-typings/types/eth-lightwallet/index.d.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/typescript-typings/types/eth-lightwallet/index.d.ts b/packages/typescript-typings/types/eth-lightwallet/index.d.ts index d31e67fc4..b871fb289 100644 --- a/packages/typescript-typings/types/eth-lightwallet/index.d.ts +++ b/packages/typescript-typings/types/eth-lightwallet/index.d.ts @@ -3,7 +3,12 @@ declare module 'eth-lightwallet' { import { ECSignatureBuffer } from '@0xproject/types'; interface signing { - signTx(keystore: keystore, pwDerivedKey: Uint8Array, rawTx: string, signingAddress: string): string; + signTx( + keystore: keystore, + pwDerivedKey: Uint8Array, + rawTx: string, + signingAddress: string, + ): string; signMsg( keystore: keystore, pwDerivedKey: Uint8Array, @@ -26,6 +31,7 @@ declare module 'eth-lightwallet' { salt?: string; hdPathString: string; } + export class keystore { public static createVault( options: VaultOptions, |