@rbxts/types 1.0.830 → 1.0.831
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.
|
@@ -699,7 +699,7 @@ interface RBXObject {
|
|
|
699
699
|
* @param className The class against which the Object's class will be checked. Case-sensitive.
|
|
700
700
|
* @returns Describes whether the Object's class matched or is a subclass of the given class.
|
|
701
701
|
*/
|
|
702
|
-
IsA<T extends keyof Objects>(this:
|
|
702
|
+
IsA<T extends keyof Objects>(this: RBXObject, className: T): this is Objects[T];
|
|
703
703
|
/**
|
|
704
704
|
* Fired immediately after a property of the object changes, with some limitations.
|
|
705
705
|
*
|