Latest updates from IceHrmPro

This commit is contained in:
Thilina Pituwala
2020-05-20 18:47:29 +02:00
parent 60c92d7935
commit 7453a58aad
18012 changed files with 2089245 additions and 10173 deletions

70
web/node_modules/rc-menu/lib/utils/isMobile.d.ts generated vendored Normal file
View File

@@ -0,0 +1,70 @@
declare function isMobile(userAgent?: string): {
apple: {
phone: boolean;
ipod: any;
tablet: boolean;
device: boolean;
};
amazon: {
phone: any;
tablet: any;
device: any;
};
android: {
phone: any;
tablet: any;
device: any;
};
windows: {
phone: any;
tablet: any;
device: any;
};
other: {
blackberry: any;
blackberry10: any;
opera: any;
firefox: any;
chrome: any;
device: any;
};
any: any;
phone: any;
tablet: any;
};
declare const defaultResult: {
isMobile: typeof isMobile;
apple: {
phone: boolean;
ipod: any;
tablet: boolean;
device: boolean;
};
amazon: {
phone: any;
tablet: any;
device: any;
};
android: {
phone: any;
tablet: any;
device: any;
};
windows: {
phone: any;
tablet: any;
device: any;
};
other: {
blackberry: any;
blackberry10: any;
opera: any;
firefox: any;
chrome: any;
device: any;
};
any: any;
phone: any;
tablet: any;
};
export default defaultResult;