| 7 | |
| 8 | // https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData |
| 9 | interface NavigatorUAData { |
| 10 | brands: Array<{ brand: string; version: string }> |
| 11 | mobile: boolean |
| 12 | platform: string |
| 13 | getHighEntropyValues(hints: string[]): Promise<HighEntropyValues> |
| 14 | } |
| 15 | |
| 16 | // GREASE (Generate Random Extensions and Sustain Extensibility) brands are |
| 17 | // intentionally fake entries added by browsers to prevent API ossification. |
no outgoing calls
no test coverage detected
searching dependent graphs…