From 5e3157db4be638a13bba3273ca236e72cdd19632 Mon Sep 17 00:00:00 2001 From: Ryan Lee Date: Wed, 17 Jul 2019 17:12:40 -0400 Subject: [PATCH] Fix typings for Account Sequence Number (#203) The actual constructor only takes a sequence number of type string. --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 6b5892fe6..1ca10f237 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -4,7 +4,7 @@ export {}; export class Account { - constructor(accountId: string, sequence: string | number); + constructor(accountId: string, sequence: string); accountId(): string; sequenceNumber(): string; incrementSequenceNumber(): void;