bf6-portal-mod-types 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -0
- package/index.d.ts +24592 -0
- package/package.json +39 -0
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# bf6-portal-mod-types
|
|
2
|
+
|
|
3
|
+
TypeScript definitions for the Battlefield 6 Portal `mod` namespace.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
This npm package provides TypeScript type definitions for the Battlefield 6 Portal `mod` namespace, enabling type-safe development when building Portal experiences.
|
|
8
|
+
|
|
9
|
+
## Source
|
|
10
|
+
|
|
11
|
+
The types in this package come directly from the SDK package downloadable at [https://portal.battlefield.com/bf6/experiences](https://portal.battlefield.com/bf6/experiences), with additional or cleaned up comments and documentation added for improved developer experience.
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm -D install bf6-portal-mod-types
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
The types are automatically available when you import or reference this package. The main type definitions are exported from `index.d.ts`.
|