@eves26phylum/types 1.0.2 → 1.0.4
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/global.d.ts +1 -1
- package/package.json +1 -1
package/global.d.ts
CHANGED
|
@@ -186,7 +186,7 @@ type WrappedInstance<T extends Instance = Instance> = {
|
|
|
186
186
|
is_a: <C extends keyof Instances>(childName: C) => this is WrappedInstance<Instances[C]>;
|
|
187
187
|
is_descendant_of: (instance: WrappedInstance) => boolean;
|
|
188
188
|
|
|
189
|
-
} & StripRobloxBrands<InstanceProperties<T>>
|
|
189
|
+
} & Pick<StripRobloxBrands<InstanceProperties<T>>, Exclude<keyof StripRobloxBrands<InstanceProperties<T>>, 'Parent'>>
|
|
190
190
|
|
|
191
191
|
/**
|
|
192
192
|
* Result of tags.get_tagged / tags.get_all_tagged.
|