Skip to content

Commit

Permalink
Fix a type issue (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpierre authored May 25, 2021
1 parent 5e9d014 commit 848c35f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fetchWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const NFT_METADATA_DEFAULT = {
export class FetchWrapper {
private fetcher: Fetcher<unknown>

constructor(fetcher?: Fetcher<unknown> | FetcherDeclaration) {
constructor(fetcher: Fetcher<unknown> | FetcherDeclaration) {
this.fetcher = this.normalizeFetcher(fetcher)
}

Expand Down

0 comments on commit 848c35f

Please sign in to comment.