Skip to content

Commit

Permalink
Export missing account return types
Browse files Browse the repository at this point in the history
  • Loading branch information
selankon committed Jul 19, 2024
1 parent 3fbbe94 commit 4dd6621
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ enum AccountAPIMethods {

export type IAccountSummary = Pick<IAccountInfoResponse, 'address' | 'balance' | 'nonce'>;

interface IAccountInfoResponse {
export interface IAccountInfoResponse {
/**
* The address of the account
*/
Expand Down Expand Up @@ -67,7 +67,7 @@ interface IAccountSetInfoResponse {
metadataURL: number;
}

interface IAccountTransfer {
export interface IAccountTransfer {
amount: number;
from: string;
height: number;
Expand All @@ -76,7 +76,7 @@ interface IAccountTransfer {
to: string;
}

interface IAccountTransfersResponse {
export interface IAccountTransfersResponse {
transfers: {
received: Array<IAccountTransfer>;
sent: Array<IAccountTransfer>;
Expand Down

0 comments on commit 4dd6621

Please sign in to comment.