@tsonic/js 10.0.43 → 10.0.45
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/__internal/extensions/index.d.ts +2 -0
- package/bindings.json +9 -0
- package/core-globals.d.ts +0 -6
- package/globals.d.ts +17 -0
- package/index/bindings.json +548 -480
- package/index/internal/index.d.ts +8 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/tsonic.bindings.json +1 -1
|
@@ -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