@tsonic/js 10.0.40 → 10.0.41

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/index.d.ts CHANGED
@@ -12,7 +12,7 @@ import * as Internal from './index/internal/index.js';
12
12
  import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
13
13
 
14
14
  // Cross-namespace type imports for constraints
15
- import type { IEnumerable as IEnumerable__System_Collections_Generic, IEnumerator, KeyValuePair, List } from '@tsonic/dotnet/System.Collections.Generic.js';
15
+ import type { IEnumerable as IEnumerable__System_Collections_Generic, IEnumerator, List } from '@tsonic/dotnet/System.Collections.Generic.js';
16
16
  import type { IEnumerable } from '@tsonic/dotnet/System.Collections.js';
17
17
  import type { Action, Boolean as ClrBoolean, Byte, Comparison, Double, Exception, Func, Int16, Int32, Int64, Nullable, Object as ClrObject, SByte, Single, String as ClrString, UInt16, UInt32, ValueTuple, Void } from '@tsonic/dotnet/System.js';
18
18
  import type { ISerializable } from '@tsonic/dotnet/System.Runtime.Serialization.js';
@@ -34,6 +34,8 @@ export { JSON$instance as JSON } from './index/internal/index.js';
34
34
  export { Map_2 as Map } from './index/internal/index.js';
35
35
  export { Math$instance as Math } from './index/internal/index.js';
36
36
  export { Number$instance as Number } from './index/internal/index.js';
37
+ export { Object$instance as Object } from './index/internal/index.js';
38
+ export { ProcessKeepAlive$instance as ProcessKeepAlive } from './index/internal/index.js';
37
39
  export { RangeError as RangeError } from './index/internal/index.js';
38
40
  export { RegExp as RegExp } from './index/internal/index.js';
39
41
  export { RegExpMatchResult as RegExpMatchResult } from './index/internal/index.js';
@@ -61,7 +63,7 @@ export declare function isFinite(value: double): boolean;
61
63
  export declare function isNaN(value: double): boolean;
62
64
  export declare function Number(value: unknown): double;
63
65
  export declare function parseFloat(str: string): double;
64
- export declare function parseInt(str: string, radix?: Nullable<int>): Nullable<long>;
66
+ export declare function parseInt(str: string, radix?: Nullable<int>): double;
65
67
  export declare function String(value: unknown): string;
66
68
  export declare const Infinity: double;
67
69
  export declare const NaN: double;
package/package.json CHANGED
@@ -1,15 +1,13 @@
1
1
  {
2
2
  "name": "@tsonic/js",
3
- "version": "10.0.40",
3
+ "version": "10.0.41",
4
4
  "description": "TypeScript type definitions for JavaScript Runtime (JSRuntime) library",
5
5
  "main": "index.d.ts",
6
6
  "types": "index.d.ts",
7
7
  "files": [
8
- "index.d.ts",
9
- "index.js",
10
- "core-globals.d.ts",
11
- "globals.d.ts",
12
- "bindings.json",
8
+ "**/*.d.ts",
9
+ "**/*.js",
10
+ "**/bindings.json",
13
11
  "families.json",
14
12
  "tsonic.bindings.json",
15
13
  "tsonic.surface.json",
@@ -2,6 +2,7 @@
2
2
  "bindingVersion": 1,
3
3
  "packageName": "@tsonic/js",
4
4
  "surfaceMode": "@tsonic/js",
5
+ "assemblyName": "Tsonic.JSRuntime",
5
6
  "runtimePackages": [
6
7
  "@tsonic/js"
7
8
  ],
@@ -9,7 +10,7 @@
9
10
  "packageReferences": [
10
11
  {
11
12
  "id": "Tsonic.JSRuntime",
12
- "version": "0.0.4",
13
+ "version": "0.0.5",
13
14
  "types": "@tsonic/js"
14
15
  }
15
16
  ]