UNPKG

@mantine/hooks

Version:

A collection of 50+ hooks for state and UI management

6 lines (5 loc) 250 B
export type UseOSReturnValue = 'undetermined' | 'macos' | 'ios' | 'windows' | 'android' | 'linux' | 'chromeos'; export interface UseOsOptions { getValueInEffect: boolean; } export declare function useOs(options?: UseOsOptions): UseOSReturnValue;