This commit is contained in:
2022-07-21 03:28:35 +00:00
parent d7c883d6df
commit 51b34b0e1d
30103 changed files with 4152204 additions and 23 deletions
+5
View File
@@ -0,0 +1,5 @@
/**
* Gets the language settings of the environment in which the LIFF app is running.
* @export
*/
export default function getLanguage(): string;
+12
View File
@@ -0,0 +1,12 @@
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 {};
+5
View File
@@ -0,0 +1,5 @@
/**
* Get LIFF SDK Version
* @return {string}
*/
export default function getVersion(): string;
+11
View File
@@ -0,0 +1,11 @@
/**
* Determines whether the LIFF app is running in LINE's in-app browser.
* @export
* @returns {boolean}
*/
export default function isInClient(): boolean;
/**
* Cleanup cached OS, testing use
* @export
*/
export declare function _cleanupCachedIsInClient(): void;