@tma.js/sdk 1.4.0 → 1.4.1
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/dist/dts/index.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.iife.js +1 -1
- package/dist/index.iife.js.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +12 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tma.js/sdk",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
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",
|
package/src/index.ts
CHANGED
|
@@ -116,6 +116,18 @@ export {
|
|
|
116
116
|
type HashNavigatorEventListener,
|
|
117
117
|
type HashNavigatorEventName,
|
|
118
118
|
} from './navigation/index.js';
|
|
119
|
+
export {
|
|
120
|
+
boolean,
|
|
121
|
+
searchParams,
|
|
122
|
+
string,
|
|
123
|
+
rgb,
|
|
124
|
+
array,
|
|
125
|
+
date,
|
|
126
|
+
json,
|
|
127
|
+
number,
|
|
128
|
+
ParseError,
|
|
129
|
+
ParseSchemaFieldError,
|
|
130
|
+
} from './parsing/index.js';
|
|
119
131
|
export {
|
|
120
132
|
Popup,
|
|
121
133
|
type PopupEventName,
|