@newbiz/common-libs
Version:
신사업개발실 서비스/어드민 프론트엔드 공통 라이브러리
27 lines (26 loc) • 637 B
TypeScript
export interface IPlatformInfo {
OS: {
vendor: string;
version: string;
};
Browser: {
type: string;
vendor: string;
version: string;
};
UA: {
productName: string;
productVersion: string;
systemInfo: string;
extras?: string;
};
isDesktop: boolean;
isMobile: boolean;
isMobileApp: boolean;
isAOS: boolean;
isIOS: boolean;
isWMP: boolean;
isWSP: boolean;
}
export declare function checkVersion(baseVersion: string, currVersion: string): -1 | 0 | 1;
export declare function getInfo(userAgent: string): IPlatformInfo;