@make-software/csprclick-core-client
Version:
CSPR.click core client package for web applications
17 lines (16 loc) • 463 B
TypeScript
export declare enum HashLength {
FULL = 0,
TINY = 5,
LITTLE = 10,
SMALL = 15,
MEDIUM = 20,
LARGE = 25
}
export declare const formatHash: (hash: string, visibleHashLength?: HashLength) => string;
export declare const _isRunningOnProviderInAppBrowser: () => string | undefined;
export declare const _isRunningOnMobileDevice: () => {
isIOS: boolean;
isAndroid: boolean;
androidVersion: string;
iOSVersion: string | number;
};