@tsonic/core 10.0.20 → 10.0.21

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.
Files changed (2) hide show
  1. package/lang.d.ts +1 -1
  2. package/package.json +2 -2
package/lang.d.ts CHANGED
@@ -407,7 +407,7 @@ export type OverloadedConstructorParameters<C extends AttributeCtor> =
407
407
  export interface AttributeDescriptor<C extends AttributeCtor = AttributeCtor> {
408
408
  readonly kind: "attribute";
409
409
  readonly ctor: C;
410
- readonly args: readonly OverloadedConstructorParameters<C>;
410
+ readonly args: OverloadedConstructorParameters<C>;
411
411
  }
412
412
 
413
413
  /** Extract instance type of a constructor. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/core",
3
- "version": "10.0.20",
3
+ "version": "10.0.21",
4
4
  "description": "Core type definitions for Tsonic (versioned by .NET major)",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -25,6 +25,6 @@
25
25
  },
26
26
  "homepage": "https://github.com/tsoniclang/core#readme",
27
27
  "peerDependencies": {
28
- "@tsonic/dotnet": "10.0.20"
28
+ "@tsonic/dotnet": "10.0.21"
29
29
  }
30
30
  }