Skip to content

Commit bb31ae3

Browse files
authored
Add new int types to TS definitions
1 parent ba3ddc8 commit bb31ae3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

types/index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class Account {
1212
incrementSequenceNumber(): void;
1313
}
1414

15-
export class Address {
15+
export class Address {@
1616
constructor(address: string);
1717
static fromString(address: string): Address;
1818
static account(buffer: Buffer): Address;
@@ -1136,6 +1136,8 @@ export function extractBaseAddress(address: string): string;
11361136

11371137
export type IntLike = string | number | bigint;
11381138
export type IntType =
1139+
| 'i32'
1140+
| 'u32'
11391141
| 'i64'
11401142
| 'u64'
11411143
| 'i128'

0 commit comments

Comments
 (0)