@tsonic/js 10.0.44 → 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.
@@ -54,6 +54,7 @@ interface __TsonicExtMethods_Tsonic_JSRuntime {
54
54
  toLocaleLowerCase(this: string): Rewrap<this, string>;
55
55
  toLocaleUpperCase(this: string): Rewrap<this, string>;
56
56
  toLowerCase(this: string): Rewrap<this, string>;
57
+ toString(this: boolean): Rewrap<this, string>;
57
58
  toString(this: double): Rewrap<this, string>;
58
59
  toString(this: int): Rewrap<this, string>;
59
60
  toString(this: long): Rewrap<this, string>;
@@ -68,6 +69,7 @@ interface __TsonicExtMethods_Tsonic_JSRuntime {
68
69
  trimLeft(this: string): Rewrap<this, string>;
69
70
  trimRight(this: string): Rewrap<this, string>;
70
71
  trimStart(this: string): Rewrap<this, string>;
72
+ valueOf(this: boolean): Rewrap<this, boolean>;
71
73
  valueOf(this: double): Rewrap<this, double>;
72
74
  valueOf(this: int): Rewrap<this, int>;
73
75
  valueOf(this: long): Rewrap<this, long>;
package/bindings.json CHANGED
@@ -50,6 +50,15 @@
50
50
  "contributesTypeIdentity": true
51
51
  }
52
52
  },
53
+ "Boolean": {
54
+ "kind": "global",
55
+ "assembly": "Tsonic.JSRuntime",
56
+ "type": "Tsonic.JSRuntime.BooleanOps",
57
+ "csharpName": "Globals.Boolean",
58
+ "typeSemantics": {
59
+ "contributesTypeIdentity": true
60
+ }
61
+ },
53
62
  "RegExp": {
54
63
  "kind": "global",
55
64
  "assembly": "Tsonic.JSRuntime",
package/core-globals.d.ts CHANGED
@@ -22,9 +22,6 @@ declare global {
22
22
  interface RegExp {
23
23
  }
24
24
 
25
- interface ImportMeta {
26
- }
27
-
28
25
  interface String {
29
26
  readonly [n: number]: string;
30
27
  }
@@ -32,9 +29,6 @@ declare global {
32
29
  interface Number {
33
30
  }
34
31
 
35
- interface Boolean {
36
- }
37
-
38
32
  interface Object {
39
33
  constructor: Function;
40
34
  }
package/globals.d.ts CHANGED
@@ -62,6 +62,21 @@ declare global {
62
62
  valueOf(): number;
63
63
  }
64
64
 
65
+ interface Boolean {
66
+ toString(): string;
67
+ valueOf(): boolean;
68
+ }
69
+
70
+ interface BooleanConstructor {
71
+ (value?: unknown): boolean;
72
+ }
73
+
74
+ interface ImportMeta {
75
+ readonly url: string;
76
+ readonly filename: string;
77
+ readonly dirname: string;
78
+ }
79
+
65
80
  interface NumberConstructor {
66
81
  readonly EPSILON: number;
67
82
  readonly MAX_SAFE_INTEGER: number;
@@ -326,6 +341,8 @@ declare global {
326
341
 
327
342
  const Number: NumberConstructor;
328
343
 
344
+ const Boolean: BooleanConstructor;
345
+
329
346
  const console: Console;
330
347
 
331
348
  const Date: DateConstructor;