@overwolf/ow-electron-packages-types 1.1.0 → 1.1.1-beta.1
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/LICENSE +21 -21
- package/README.md +44 -44
- package/game-list.d.ts +4014 -4014
- package/gep-supported-games.d.ts +59 -59
- package/package.json +36 -36
- package/types.d.ts +5923 -5710
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2023 Overwolf Ltd.
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Overwolf Ltd.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
# @overwolf/ow-electron-packages-types
|
|
2
|
-
|
|
3
|
-

|
|
4
|
-
|
|
5
|
-
Overwolf Electron packages type definition files for autocompletion and documentation purposes.
|
|
6
|
-
|
|
7
|
-
## Installation
|
|
8
|
-
|
|
9
|
-
To install this package, simply run
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
$ npm i --save-dev @overwolf/ow-electron-packages-types
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
In newer versions of ow-electron, this package should be automatically bundled in.
|
|
16
|
-
|
|
17
|
-
## Usage
|
|
18
|
-
|
|
19
|
-
To use this package in your Typescript project, simply import the relevant members from any relevant files
|
|
20
|
-
|
|
21
|
-
```
|
|
22
|
-
import "@overwolf/ow-electron-packages-types";
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
Alternatively, you can add it directly to your tsconfig file, like so:
|
|
26
|
-
```
|
|
27
|
-
{
|
|
28
|
-
"compilerOptions":{
|
|
29
|
-
...,
|
|
30
|
-
"types": [
|
|
31
|
-
...,
|
|
32
|
-
"@overwolf/ow-electron-packages-types"
|
|
33
|
-
...
|
|
34
|
-
]
|
|
35
|
-
...,
|
|
36
|
-
}
|
|
37
|
-
...
|
|
38
|
-
}
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
This way, it will always be available in all of your files, even without an explicit import.
|
|
42
|
-
|
|
43
|
-
## Getting started with ow-electron packages
|
|
44
|
-
|
|
1
|
+
# @overwolf/ow-electron-packages-types
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
Overwolf Electron packages type definition files for autocompletion and documentation purposes.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
To install this package, simply run
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
$ npm i --save-dev @overwolf/ow-electron-packages-types
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
In newer versions of ow-electron, this package should be automatically bundled in.
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
To use this package in your Typescript project, simply import the relevant members from any relevant files
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
import "@overwolf/ow-electron-packages-types";
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Alternatively, you can add it directly to your tsconfig file, like so:
|
|
26
|
+
```
|
|
27
|
+
{
|
|
28
|
+
"compilerOptions":{
|
|
29
|
+
...,
|
|
30
|
+
"types": [
|
|
31
|
+
...,
|
|
32
|
+
"@overwolf/ow-electron-packages-types"
|
|
33
|
+
...
|
|
34
|
+
]
|
|
35
|
+
...,
|
|
36
|
+
}
|
|
37
|
+
...
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
This way, it will always be available in all of your files, even without an explicit import.
|
|
42
|
+
|
|
43
|
+
## Getting started with ow-electron packages
|
|
44
|
+
|
|
45
45
|
[ow-electron packages](./docs/packages.md)
|