@rbxts/types 1.0.796 → 1.0.797

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.
@@ -817,9 +817,7 @@ interface InstanceConstructor {
817
817
  * - This constructor will not copy any of the descendant `Instances` parented to the existing object.
818
818
  * - This constructor will return a new object even if the existing object had `Instance.Archivable` set to `false`.
819
819
  */
820
- fromExisting: <T extends keyof CreatableInstances>(
821
- existingInstance: CreatableInstances[T],
822
- ) => CreatableInstances[T];
820
+ fromExisting: <T extends Instance>(existingInstance: T) => T;
823
821
  }
824
822
 
825
823
  declare const Instance: InstanceConstructor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.796",
3
+ "version": "1.0.797",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },