Skip to content

Commit

Permalink
Merge pull request #9 from cuppachino/cuppachino-patch-2
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
cuppachino committed Sep 6, 2023
2 parents 42a6cc1 + 67d3357 commit e91ae3d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/tender-avocados-build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@cuppachino/proxy-fn": patch
---

Update README.md
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,15 @@ infersPromises(4, 8) // Promise<[sum: number, msg: string]>
```ts
/**
* ```ts
* () => Promise<[sum: number, msg: string]>
* (() => Promise<[sum: number, msg: string]>) & { name: string }
*
* ProxyFn<
* // NewArgs
* [],
* // NewReturnType
* Promise<[sum: number, msg: string]>
* Promise<[sum: number, msg: string]>,
* // Properties
* { name: string }
* >
* ```
*/
Expand Down

0 comments on commit e91ae3d

Please sign in to comment.