Skip to content

Commit

Permalink
fix: .gitignore moved to root and lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Aug 8, 2024
1 parent 8e6a019 commit 0699b43
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ bin
# Dev environment metadata
.idea
.DS_Store
*.log
*.log

# Local development package
/packages/sdk/adena-wallet-sdk-*.tgz
2 changes: 0 additions & 2 deletions packages/sdk/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion packages/sdk/src/types/methods/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export enum AddEstablishResponseType {
ALREADY_CONNECTED = "ALREADY_CONNECTED",
}

export type AddEstablishResponse = IAdenaResponse<AddEstablishResponseType, {}>;
export type AddEstablishResponse = IAdenaResponse<AddEstablishResponseType, Record<string, never>>;

export type AdenaAddEstablish = (name: string) => Promise<AddEstablishResponse>;

Expand Down

0 comments on commit 0699b43

Please sign in to comment.