Skip to content

Commit

Permalink
fix: add unknown type
Browse files Browse the repository at this point in the history
  • Loading branch information
akasuv committed Oct 23, 2023
1 parent 5df6827 commit 468bc27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export enum ErrorType {
}

export interface EIP1193Provider extends EventEmitter {
request(args: { method: string; params?: any[] }): Promise<unknown>;
request(args: { method: string; params?: any[] | unknown }): Promise<unknown>;
}

export interface EIP1193ProviderError extends Error {
Expand Down

0 comments on commit 468bc27

Please sign in to comment.