Files
DefinitelyTyped/types/detect-inapp/index.d.ts
Nathan Shively-Sanders 83be7628f0 Fix export in detect-inapp (#63253)
And exempt in hapi__catbox-memory; the warning is incorrect there.
2022-11-14 11:38:23 -08:00

17 lines
449 B
TypeScript

// Type definitions for detect-inapp 1.4
// Project: https://github.com/f2etw/detect-inapp#readme
// Definitions by: Johan Möller <https://github.com/moelleer>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare class InApp {
ua: string;
readonly browser: string;
readonly isMobile: boolean;
readonly isDesktop: boolean;
readonly isInApp: boolean;
constructor(useragent: string);
}
export = InApp;