fix(http): fix tablet and smarttv in Device.type literal types (#6129)

This commit is contained in:
Alan Norton 2024-10-20 23:50:30 -04:00 committed by GitHub
parent 45be5d319d
commit d6b5612c9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -85,11 +85,11 @@ export interface Device {
/** The type of device. */
readonly type:
| "console"
| "mobile"
| "table"
| "smartv"
| "wearable"
| "embedded"
| "mobile"
| "tablet"
| "smarttv"
| "wearable"
| undefined;
/** The vendor of the device. */
readonly vendor: string | undefined;