amis-rpc-design/node_modules/rc-util/lib/hooks/useMobile.d.ts

7 lines
237 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
/**
* Hook to detect if the user is on a mobile device
* Notice that this hook will only detect the device type in effect, so it will always be false in server side
*/
declare const useMobile: () => boolean;
export default useMobile;