@bedrock-apis/env-types 1.0.0-beta.2 → 1.0.0-beta.4
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 +26 -21
- package/README.md +2 -2
- package/lib.d.ts +22 -0
- package/package.json +10 -3
package/LICENSE
CHANGED
|
@@ -1,21 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
Copyright 2026 Bedrock APIs
|
|
8
|
+
|
|
9
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
+
you may not use this file except in compliance with the License.
|
|
11
|
+
You may obtain a copy of the License at
|
|
12
|
+
|
|
13
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
14
|
+
|
|
15
|
+
Unless required by applicable law or agreed to in writing, software
|
|
16
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
17
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
18
|
+
See the License for the specific language governing permissions and
|
|
19
|
+
limitations under the License.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
This project includes content derived from Microsoft's TypeScript standard library declaration files (`lib.es*.d.ts`),
|
|
24
|
+
which are licensed under the Apache License, Version 2.0.
|
|
25
|
+
|
|
26
|
+
Modifications: Portions of the original files have been removed to include only the declarations used by this project.
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Install the package as a development dependency, and add it to the known types i
|
|
|
18
18
|
{
|
|
19
19
|
"compilerOptions": {
|
|
20
20
|
"noLib": true,
|
|
21
|
-
"types": ["@bedrock-apis/env-
|
|
21
|
+
"types": ["@bedrock-apis/env-types"],
|
|
22
22
|
// ...
|
|
23
23
|
}
|
|
24
24
|
// ...
|
|
@@ -29,7 +29,7 @@ Install the package as a development dependency, and add it to the known types i
|
|
|
29
29
|
|
|
30
30
|
- Generate a basic set of methods and properties for each global class.
|
|
31
31
|
- Compare and extend these definitions against TypeScript’s standard global types.
|
|
32
|
-
- Continuously update with
|
|
32
|
+
- Continuously update with help of contributions.
|
|
33
33
|
|
|
34
34
|
## Contributing
|
|
35
35
|
|
package/lib.d.ts
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
/*! *****************************************************************************
|
|
3
|
+
This file includes content derived from Microsoft's TypeScript standard library
|
|
4
|
+
declaration files (lib.es*.d.ts), licensed under the Apache License, Version 2.0.
|
|
5
|
+
|
|
6
|
+
Modifications include: Portions of the original files have been removed to
|
|
7
|
+
include only the declarations used by this project.
|
|
8
|
+
|
|
9
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
+
you may not use this file except in compliance with the License.
|
|
11
|
+
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
15
|
+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
16
|
+
MERCHANTABILITY OR NON-INFRINGEMENT.
|
|
17
|
+
|
|
18
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
|
19
|
+
and limitations under the License.
|
|
20
|
+
***************************************************************************** */
|
|
21
|
+
|
|
1
22
|
/// <reference no-default-lib="true"/>
|
|
2
23
|
|
|
24
|
+
|
|
3
25
|
interface Map<K, V> {
|
|
4
26
|
clear(): void;
|
|
5
27
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bedrock-apis/env-types",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.4",
|
|
4
4
|
"description": "A collection of environment-specific TypeScript type definitions for engines with non-standard versioning and selective feature support across versions.",
|
|
5
5
|
"main": "",
|
|
6
6
|
"types": "lib.d.ts",
|
|
@@ -17,6 +17,13 @@
|
|
|
17
17
|
"./package.json"
|
|
18
18
|
],
|
|
19
19
|
"author": "bedrock-apis",
|
|
20
|
-
"license": "
|
|
21
|
-
"
|
|
20
|
+
"license": "Apache-2.0",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/bedrock-apis/env-types.git"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/bedrock-apis/env-types/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/bedrock-apis/env-types#readme"
|
|
22
29
|
}
|