mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 13:27:15 +08:00
8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
import { detect } from 'detect-browser';
|
|
const browser = detect();
|
|
|
|
if (browser) {
|
|
const name: string = browser.name;
|
|
const version: string = browser.version;
|
|
}
|