Files
emaui/node_modules/@mantine/hooks/lib/use-os/use-os.d.ts
2026-05-29 15:23:46 +03:00

6 lines
250 B
TypeScript

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