@koine/i18n 2.0.0-beta.100 → 2.0.0-beta.101
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/api.cjs.js +5 -1
- package/api.esm.js +5 -1
- package/package.json +3 -3
package/api.cjs.js
CHANGED
|
@@ -1190,8 +1190,10 @@ export namespace I18n {
|
|
|
1190
1190
|
*
|
|
1191
1191
|
* NOTE: when using a shortcut passing TranslationOptions to \`t()\` is not supported
|
|
1192
1192
|
* TODO: type safe this behaviour of the third argument (options).
|
|
1193
|
+
*
|
|
1194
|
+
* @internal
|
|
1193
1195
|
*/
|
|
1194
|
-
type TranslationQuery =
|
|
1196
|
+
export type TranslationQuery =
|
|
1195
1197
|
| undefined
|
|
1196
1198
|
| null
|
|
1197
1199
|
| TranslationShortcut
|
|
@@ -1204,6 +1206,8 @@ export namespace I18n {
|
|
|
1204
1206
|
*
|
|
1205
1207
|
* NOTE: when using a shortcut passing TranslationOptions to \`t()\` is not supported
|
|
1206
1208
|
* TODO: type safe this behaviour of the third argument (options).
|
|
1209
|
+
*
|
|
1210
|
+
* @internal
|
|
1207
1211
|
*/
|
|
1208
1212
|
type TranslationOptions =
|
|
1209
1213
|
| undefined
|
package/api.esm.js
CHANGED
|
@@ -1168,8 +1168,10 @@ export namespace I18n {
|
|
|
1168
1168
|
*
|
|
1169
1169
|
* NOTE: when using a shortcut passing TranslationOptions to \`t()\` is not supported
|
|
1170
1170
|
* TODO: type safe this behaviour of the third argument (options).
|
|
1171
|
+
*
|
|
1172
|
+
* @internal
|
|
1171
1173
|
*/
|
|
1172
|
-
type TranslationQuery =
|
|
1174
|
+
export type TranslationQuery =
|
|
1173
1175
|
| undefined
|
|
1174
1176
|
| null
|
|
1175
1177
|
| TranslationShortcut
|
|
@@ -1182,6 +1184,8 @@ export namespace I18n {
|
|
|
1182
1184
|
*
|
|
1183
1185
|
* NOTE: when using a shortcut passing TranslationOptions to \`t()\` is not supported
|
|
1184
1186
|
* TODO: type safe this behaviour of the third argument (options).
|
|
1187
|
+
*
|
|
1188
|
+
* @internal
|
|
1185
1189
|
*/
|
|
1186
1190
|
type TranslationOptions =
|
|
1187
1191
|
| undefined
|
package/package.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"name": "@koine/i18n",
|
|
3
3
|
"sideEffects": false,
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@koine/node": "2.0.0-beta.
|
|
6
|
-
"@koine/utils": "2.0.0-beta.
|
|
5
|
+
"@koine/node": "2.0.0-beta.101",
|
|
6
|
+
"@koine/utils": "2.0.0-beta.101",
|
|
7
7
|
"glob": "^10.3.10",
|
|
8
8
|
"webpack": "^5.90.1",
|
|
9
9
|
"minimatch": "^9.0.3",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
},
|
|
59
59
|
"module": "./index.esm.js",
|
|
60
60
|
"main": "./index.cjs.js",
|
|
61
|
-
"version": "2.0.0-beta.
|
|
61
|
+
"version": "2.0.0-beta.101"
|
|
62
62
|
}
|