6 lines
181 B
TypeScript
6 lines
181 B
TypeScript
/**
|
|
* Returns true if and only if the user is on a iOS device.
|
|
* Used to determine whether iOS-specific behavior should be applied.
|
|
*/
|
|
export declare const isIOS: () => boolean;
|