mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 13:10:58 +00:00
6 lines
250 B
TypeScript
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;
|