diff options
author | Sergey Ukustov <sergey@ukstv.me> | 2017-10-24 16:46:19 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-01-10 18:24:36 +0800 |
commit | 4e0c67e2a1cebc6ad65d4cb15c5894875de59bff (patch) | |
tree | c94e3d16c09cecbb8af68fc521e4df34e51512e5 | |
parent | 0cc21db6544da10701d3d6cadb47b618c585a06c (diff) | |
download | dexon-sol-tools-4e0c67e2a1cebc6ad65d4cb15c5894875de59bff.tar dexon-sol-tools-4e0c67e2a1cebc6ad65d4cb15c5894875de59bff.tar.gz dexon-sol-tools-4e0c67e2a1cebc6ad65d4cb15c5894875de59bff.tar.bz2 dexon-sol-tools-4e0c67e2a1cebc6ad65d4cb15c5894875de59bff.tar.lz dexon-sol-tools-4e0c67e2a1cebc6ad65d4cb15c5894875de59bff.tar.xz dexon-sol-tools-4e0c67e2a1cebc6ad65d4cb15c5894875de59bff.tar.zst dexon-sol-tools-4e0c67e2a1cebc6ad65d4cb15c5894875de59bff.zip |
Fix indentation
-rw-r--r-- | packages/web3-typescript-typings/index.d.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/web3-typescript-typings/index.d.ts b/packages/web3-typescript-typings/index.d.ts index 46659ebd2..96b69e1c5 100644 --- a/packages/web3-typescript-typings/index.d.ts +++ b/packages/web3-typescript-typings/index.d.ts @@ -252,11 +252,11 @@ declare module 'web3' { } interface PersonalApi { - listAccounts: string[] | undefined; - newAccount(password?: string): string; - unlockAccount(address: string, password?: string, duration?: number): boolean; - lockAccount(address: string): boolean; - sign(message: string, account: string, password: string): string; + listAccounts: string[] | undefined; + newAccount(password?: string): string; + unlockAccount(address: string, password?: string, duration?: number): boolean; + lockAccount(address: string): boolean; + sign(message: string, account: string, password: string): string; } interface NetApi { |