@avstantso/utils-languages 1.1.0 → 1.2.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+
4
+ ## [1.2.2] - 2026-01-31
5
+
6
+ ### Changed
7
+
8
+ - Updated `@avstantso/ts` dependency (Updated @avstantso/ts dependency (fix String, Filter))
9
+
10
+
11
+ ## [1.2.1] - 2026-01-18
12
+
13
+ ### Changed
14
+
15
+ - Fix publishing
16
+
3
17
  All notable changes to this project will be documented in this file.
4
18
 
5
19
  ## [1.1.0] - 2026-01-18
@@ -0,0 +1 @@
1
+ import './rus';
@@ -0,0 +1,20 @@
1
+ declare namespace AVStantso {
2
+ /**
3
+ * @summary Russian grammar helpers
4
+ */
5
+ namespace Rus { }
6
+ namespace Code {
7
+ /**
8
+ * @summary Russian grammar helpers
9
+ */
10
+ interface Rus {
11
+ }
12
+ }
13
+ interface Code {
14
+ /**
15
+ * @summary Russian grammar helpers
16
+ */
17
+ Rus: Code.Rus;
18
+ }
19
+ const Rus: Code.Rus;
20
+ }