Skip to content

Commit

Permalink
docs: fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
07akioni committed Jan 7, 2025
1 parent 91d5c72 commit 52855ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -552,9 +552,9 @@ type LylaWithRetryOptions<S> = {
>
onRejected: (params: {
state: S
options: LylaRequestOptionsWithContext<C, M>
lyla: Lyla<C, M>
error: LylaError<C, M>
options: LylaRequestOptionsWithContext
lyla: Lyla
error: LylaError
}) => Promise<
| {
action: 'retry'
Expand Down
6 changes: 3 additions & 3 deletions README.zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -537,9 +537,9 @@ type LylaWithRetryOptions<S> = {
>
onRejected: (params: {
state: S
options: LylaRequestOptionsWithContext<C, M>
lyla: Lyla<C, M>
error: LylaError<C, M>
options: LylaRequestOptions
lyla: Lyla
error: LylaError
}) => Promise<
| {
action: 'retry'
Expand Down

0 comments on commit 52855ea

Please sign in to comment.