mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
457 B
TypeScript
15 lines
457 B
TypeScript
// Type definitions for detect-browser v1.6.2
|
|
// Project: https://github.com/DamonOehlman/detect-browser
|
|
// Definitions by: Rogier Schouten <https://github.com/rogierschouten>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/**
|
|
* Browser name
|
|
*/
|
|
export const name: "edge" | "yandexbrowser" | "chrome" | "crios" | "firefox" | "opera" | "ie" | "bb10" | "android" | "ios" | "safari";
|
|
|
|
/**
|
|
* Browser version
|
|
*/
|
|
export const version: string;
|