data-validator-js
Version:
Validation Methods for all types of Data
54 lines (53 loc) • 890 B
TypeScript
declare class BrowserUtilities {
/**
* GetBrowser
*/
static GetBrowser(): string;
/**
* IsOffline
*/
IsOffline(): boolean;
/**
* IsOnline
*/
IsOnline(): boolean;
/**
* IsMacMachine
*/
IsMacMachine(): boolean;
/**
* IsUbuntuMachine
*/
IsUbuntuMachine(): boolean;
/**
* IsWindowsMachine
*/
IsWindowsMachine(): boolean;
/**
* IsBrowser
*/
IsBrowser(): boolean;
/**
* GetUserLanguage
*/
GetUserLanguage(): string;
/**
* IsChargerConnected
*/
IsChargerConnected(): boolean;
/**
* getBatteryStatus
*/
/**
* IsCookieEnabled
*/
IsCookieEnabled(): boolean;
/**
* IsCookieDisabled
*/
IsCookieDisabled(): boolean;
/**
* IsJavaEnabled
*/
IsJavaEnabled(): () => boolean;
}