web-features 3.34.2 → 3.34.3-dev-20260811131133-e5bfba6
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/data.json +1 -1
- package/package.json +1 -1
- package/types.quicktype.d.ts +9 -9
package/package.json
CHANGED
package/types.quicktype.d.ts
CHANGED
|
@@ -71,11 +71,11 @@ export interface FeatureData {
|
|
|
71
71
|
/**
|
|
72
72
|
* caniuse.com identifiers
|
|
73
73
|
*/
|
|
74
|
-
caniuse?: string[];
|
|
74
|
+
caniuse?: [string, ...string[]];
|
|
75
75
|
/**
|
|
76
76
|
* Sources of support data for this feature
|
|
77
77
|
*/
|
|
78
|
-
compat_features?: string[];
|
|
78
|
+
compat_features?: [string, ...string[]];
|
|
79
79
|
/**
|
|
80
80
|
* Short description of the feature, as a plain text string
|
|
81
81
|
*/
|
|
@@ -91,7 +91,7 @@ export interface FeatureData {
|
|
|
91
91
|
/**
|
|
92
92
|
* Group identifiers
|
|
93
93
|
*/
|
|
94
|
-
group?: string[];
|
|
94
|
+
group?: [string, ...string[]];
|
|
95
95
|
kind: Kind;
|
|
96
96
|
/**
|
|
97
97
|
* Short name
|
|
@@ -100,11 +100,11 @@ export interface FeatureData {
|
|
|
100
100
|
/**
|
|
101
101
|
* Snapshot identifiers
|
|
102
102
|
*/
|
|
103
|
-
snapshot?: string[];
|
|
103
|
+
snapshot?: [string, ...string[]];
|
|
104
104
|
/**
|
|
105
105
|
* Specification URLs
|
|
106
106
|
*/
|
|
107
|
-
spec?: string[];
|
|
107
|
+
spec?: [string, ...string[]];
|
|
108
108
|
/**
|
|
109
109
|
* Whether a feature is considered a "Baseline" web platform feature and when it achieved
|
|
110
110
|
* that status
|
|
@@ -117,7 +117,7 @@ export interface FeatureData {
|
|
|
117
117
|
/**
|
|
118
118
|
* The new IDs for this feature
|
|
119
119
|
*/
|
|
120
|
-
redirect_targets?: string[];
|
|
120
|
+
redirect_targets?: [string, ...string[]];
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
123
|
* Whether developers are formally discouraged from using this feature
|
|
@@ -127,11 +127,11 @@ export interface Discouraged {
|
|
|
127
127
|
* Links to a formal discouragement notice, such as specification text, intent-to-unship,
|
|
128
128
|
* etc.
|
|
129
129
|
*/
|
|
130
|
-
according_to: string[];
|
|
130
|
+
according_to: [string, ...string[]];
|
|
131
131
|
/**
|
|
132
132
|
* IDs for features that substitute some or all of this feature's utility
|
|
133
133
|
*/
|
|
134
|
-
alternatives?: string[];
|
|
134
|
+
alternatives?: [string, ...string[]];
|
|
135
135
|
/**
|
|
136
136
|
* A brief, developer-focused description of why the feature is discouraged
|
|
137
137
|
*/
|
|
@@ -195,7 +195,7 @@ export interface Status {
|
|
|
195
195
|
* Browser versions that most-recently introduced the feature
|
|
196
196
|
*/
|
|
197
197
|
support: Support;
|
|
198
|
-
[property: string]:
|
|
198
|
+
[property: string]: unknown;
|
|
199
199
|
}
|
|
200
200
|
/**
|
|
201
201
|
* Browser versions that most-recently introduced the feature
|