@tsonic/js 10.0.44 → 10.0.46

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.
@@ -653,6 +653,14 @@ export const WeakSet_1: {
653
653
 
654
654
  export type WeakSet_1<T> = WeakSet_1$instance<T>;
655
655
 
656
+ export abstract class BooleanOps$instance {
657
+ static toString(value: boolean): string;
658
+ static valueOf(value: boolean): boolean;
659
+ }
660
+
661
+
662
+ export type BooleanOps = BooleanOps$instance;
663
+
656
664
  export abstract class console$instance {
657
665
  static assert(condition: boolean, message?: string): void;
658
666
  static clear(): void;
package/index.d.ts CHANGED
@@ -19,6 +19,7 @@ import type { ISerializable } from '@tsonic/dotnet/System.Runtime.Serialization.
19
19
 
20
20
  // Public API exports (curated - no internal $instance/$views leakage)
21
21
  export { ArrayBuffer as ArrayBuffer } from './index/internal/index.js';
22
+ export { BooleanOps$instance as BooleanOps } from './index/internal/index.js';
22
23
  export { console$instance as console } from './index/internal/index.js';
23
24
  export { Date as Date } from './index/internal/index.js';
24
25
  export { Error as Error } from './index/internal/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/js",
3
- "version": "10.0.44",
3
+ "version": "10.0.46",
4
4
  "description": "TypeScript type definitions for JavaScript Runtime (JSRuntime) library",
5
5
  "main": "index.d.ts",
6
6
  "types": "index.d.ts",
@@ -10,7 +10,7 @@
10
10
  "packageReferences": [
11
11
  {
12
12
  "id": "Tsonic.JSRuntime",
13
- "version": "0.0.6",
13
+ "version": "0.0.8",
14
14
  "types": "@tsonic/js"
15
15
  }
16
16
  ]