Skip to content

Commit 0d0a42f

Browse files
author
Andrea Cosentino
committed
doc: fix documentation errors
1 parent 4bc9184 commit 0d0a42f

8 files changed

Lines changed: 1092 additions & 1045 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
[![npm downloads](https://img.shields.io/npm/dt/%40ndriadev/vite-plugin-universal-api?label=DOWNLOADS&style=for-the-badge&color=red)](https://www.npmjs.com/package/%40ndriadev/vite-plugin-universal-api)
1414
[![License: MIT](https://img.shields.io/badge/LICENSE-MIT-blue.svg?style=for-the-badge)](https://opensource.org/licenses/MIT)
1515

16-
![Statements](https://img.shields.io/badge/statements-100%25-brightgreen.svg?style=for-the-badge)
17-
![Branches](https://img.shields.io/badge/branches-90.99%25-green.svg?style=for-the-badge)
18-
![Functions](https://img.shields.io/badge/functions-99.13%25-green.svg?style=for-the-badge)
16+
![Statements](https://img.shields.io/badge/statements-99.68%25-brightgreen.svg?style=for-the-badge)
17+
![Branches](https://img.shields.io/badge/branches-90.2%25-green.svg?style=for-the-badge)
18+
![Functions](https://img.shields.io/badge/functions-98.17%25-green.svg?style=for-the-badge)
1919
![Lines](https://img.shields.io/badge/lines-100%25-brightgreen.svg?style=for-the-badge)
2020

2121
*Built with:*
@@ -131,7 +131,7 @@ yarn add -D @ndriadev/vite-plugin-universal-api
131131
### Requirements
132132

133133
- **Node.js**: `^16.0.0 || ^18.0.0 || >=20.0.0`
134-
- **Vite**: `^4.0.0 || ^5.0.0 || ^6.0.0 || >=7.0.0`
134+
- **Vite**: `^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || >=8.0.0`
135135

136136
---
137137

@@ -1192,7 +1192,7 @@ interface UniversalApiRequest extends IncomingMessage {
11921192
/** Uploaded files (multipart/form-data) */
11931193
files: Array<{
11941194
name: string;
1195-
content: Buffer;
1195+
content: Buffer<ArrayBuffer>;
11961196
contentType: string;
11971197
}> | null;
11981198
}
@@ -1270,7 +1270,7 @@ interface IWebSocketConnection {
12701270
/**
12711271
* Broadcast to all rooms this connection is in
12721272
*/
1273-
broadcastAllRooms(data: any, includeSelf?: boolean): void;
1273+
broadcastAllRooms(data: any, includeSelf: boolean): void;
12741274

12751275
/**
12761276
* Join a room

0 commit comments

Comments
 (0)