UNPKG

@mantine/hooks

Version:

A collection of 50+ hooks for state and UI management

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