mirror of
https://github.com/faisalman/ua-parser-js.git
synced 2025-09-27 07:58:45 +03:00
15 lines
466 B
TypeScript
15 lines
466 B
TypeScript
// Type definitions for Helpers submodule of UAParser.js v2.0.0-beta.3
|
|
// Project: https://github.com/faisalman/ua-parser-js
|
|
// Definitions by: Faisal Salman <https://github.com/faisalman>
|
|
|
|
import { IResult } from "../main/ua-parser";
|
|
|
|
declare function isAppleSilicon(res: IResult): boolean;
|
|
declare function isChromiumBased(res: IResult): boolean;
|
|
declare function isFrozenUA(ua: string): boolean;
|
|
|
|
export {
|
|
isAppleSilicon,
|
|
isChromiumBased,
|
|
isFrozenUA
|
|
} |