@tma.js/sdk 1.4.6 → 1.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tma.js/sdk",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "TypeScript Source Development Kit for Telegram Mini Apps client application.",
5
5
  "author": "Vladislav Kibenko <wolfram.deus@gmail.com>",
6
6
  "homepage": "https://github.com/Telegram-Mini-Apps/tma.js#readme",
@@ -1,6 +0,0 @@
1
- import type { LaunchData } from './types.js';
2
- /**
3
- * Computes launch data information. Extracts both previous and current launch parameters
4
- * to compute current list of them. Additionally, computes if page was reloaded.
5
- */
6
- export declare function computeLaunchData(): LaunchData;
@@ -1,6 +0,0 @@
1
- /**
2
- * Determines if current page was reloaded.
3
- * @returns Boolean if function was able to compute any valid value. Null in case, no
4
- * navigation entries were found.
5
- */
6
- export declare function computePageReload(): boolean | null;
@@ -1,5 +0,0 @@
1
- import type { LaunchParams } from './types.js';
2
- /**
3
- * Attempts to retrieve launch parameters using every known way.
4
- */
5
- export declare function retrieveCurrent(): LaunchParams | null;