line_push/node_modules/@line/liff/dist/lib/common/getOS.d.ts
2022-07-17 13:16:16 +08:00

13 lines
294 B
TypeScript

declare type OS = 'ios' | 'android' | 'web' | undefined;
/**
* Gets the environment in which the user is running the LIFF app.
* @export
*/
export default function getOS(): OS;
/**
* Cleanup cached OS, testing use
* @export
*/
export declare function _cleanupCachedOS(): void;
export {};