ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
14 lines (13 loc) • 372 B
TypeScript
declare class ClientHelper {
private clientBrowserData;
constructor();
getBrowser(): string | undefined;
getBrowserVersion(): string | undefined;
getOS(): string | undefined;
getOSVersion(): string | undefined;
getCPU(): string;
getUserAgent(): string;
getSystemLanguage(): string;
isHostOnly(): boolean;
}
export { ClientHelper };