File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ export const BrowserType: Readonly<{
171
171
LIBRARY : "library" ,
172
172
} > ;
173
173
174
- export const CPUName : Readonly < {
174
+ export const CPUArch : Readonly < {
175
175
'68K' : "68k" ,
176
176
ALPHA : "alpha" ,
177
177
ARM : "arm" ,
@@ -192,9 +192,9 @@ export const CPUName: Readonly<{
192
192
X86_64 : "amd64" ,
193
193
} > ;
194
194
/**
195
- * @deprecated Use `CPUName ` instead
195
+ * @deprecated Use `CPUArch ` instead
196
196
*/
197
- export const CPU : typeof CPUName ;
197
+ export const CPU : typeof CPUArch ;
198
198
199
199
export const DeviceType : Readonly < {
200
200
CONSOLE : "console" ,
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ const BrowserType = Object.freeze({
178
178
LIBRARY : 'library'
179
179
} ) ;
180
180
181
- const CPUName = Object . freeze ( {
181
+ const CPUArch = Object . freeze ( {
182
182
'68K' : '68k' ,
183
183
ALPHA : 'alpha' ,
184
184
ARM : 'arm' ,
@@ -199,9 +199,9 @@ const CPUName = Object.freeze({
199
199
X86_64 : 'amd64'
200
200
} ) ;
201
201
/**
202
- * @deprecated Use `CPUName ` instead
202
+ * @deprecated Use `CPUArch ` instead
203
203
*/
204
- const CPU = CPUName ;
204
+ const CPU = CPUArch ;
205
205
206
206
const DeviceType = Object . freeze ( {
207
207
CONSOLE : 'console' ,
@@ -688,7 +688,7 @@ module.exports = {
688
688
OS , // deprecated
689
689
BrowserName,
690
690
BrowserType,
691
- CPUName ,
691
+ CPUArch ,
692
692
DeviceType,
693
693
DeviceVendor,
694
694
EngineName,
You can’t perform that action at this time.
0 commit comments