Skip to content

Commit ea9366a

Browse files
committed
Update links in README and API reference
1 parent 1a47b13 commit ea9366a

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
## 🔗 Link
2626
+ [Github](https://github.com/a179346/nextjs-chunk-upload-action#readme)
2727
+ [npm](https://www.npmjs.com/package/nextjs-chunk-upload-action)
28+
+ [API Reference](https://github.com/a179346/nextjs-chunk-upload-action/blob/main/docs/api-reference.md)
2829

2930
## 📥 Install
3031

docs/api-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@ onStatusChange?: (oldStatus, newStatus) => void
273273
A callback that is called when the status of the uploader changes.
274274

275275
- __Parameters__
276-
- oldStatus: [ChunkUploaderStatus](#status) | `undefined`
277-
- newStatus: [ChunkUploaderStatus](#status)
276+
- oldStatus: [ChunkUploaderStatus](#status---accessor) | `undefined`
277+
- newStatus: [ChunkUploaderStatus](#status---accessor)
278278

279279
## ChunkFormData
280280

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-chunk-upload-action",
3-
"version": "7.0.0",
3+
"version": "7.1.0",
44
"description": "Uploading large files with chunking using server action in Next.js",
55
"main": "dist/index.js",
66
"scripts": {

src/index.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
/**
1+
/*!
2+
* nextjs-chunk-upload-action
3+
*
24
* Uploading large files with chunking using server action in Next.js
5+
*
6+
* [GitHub]: https://github.com/a179346/nextjs-chunk-upload-action
7+
* [npm]: https://www.npmjs.com/package/nextjs-chunk-upload-action
8+
* [API Reference]: https://github.com/a179346/nextjs-chunk-upload-action/blob/main/docs/api-reference.md
39
*/
410

511
export type Primitive = string | boolean | number | undefined | null;

0 commit comments

Comments
 (0)