forked from daren.hsu/line_push
13 lines
294 B
TypeScript
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 {};
|