Skip to content

Commit

Permalink
publish
Browse files Browse the repository at this point in the history
  • Loading branch information
hazae41 committed Aug 28, 2022
1 parent c04eab3 commit 158924f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hazae41/xswr",
"version": "1.0.40",
"version": "1.0.41",
"author": "hazae41",
"license": "MIT",
"description": "The simplest React data (re)fetching library ever made",
Expand Down
2 changes: 1 addition & 1 deletion src/mods/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface Result<D = any> {
expiration?: number
}

export type Fetcher<D = any, K = any,> =
export type Fetcher<D = any, K = any> =
(key: K, more: FetcherMore) => Promise<Result<D>>

export type FetcherMore<D = any> =
Expand Down

0 comments on commit 158924f

Please sign in to comment.