@rbxts/types 1.0.786 → 1.0.787
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.
|
@@ -11811,7 +11811,7 @@ interface GeometryService extends Instance {
|
|
|
11811
11811
|
CalculateConstraintsToPreserve(
|
|
11812
11812
|
this: GeometryService,
|
|
11813
11813
|
source: Instance,
|
|
11814
|
-
destination:
|
|
11814
|
+
destination: ReadonlyArray<Instance>,
|
|
11815
11815
|
options?: CalculateConstraintsToPreserveConfig,
|
|
11816
11816
|
): Array<unknown>;
|
|
11817
11817
|
/**
|
|
@@ -11819,8 +11819,8 @@ interface GeometryService extends Instance {
|
|
|
11819
11819
|
*/
|
|
11820
11820
|
IntersectAsync(
|
|
11821
11821
|
this: GeometryService,
|
|
11822
|
-
part:
|
|
11823
|
-
parts:
|
|
11822
|
+
part: Part | PartOperation,
|
|
11823
|
+
parts: ReadonlyArray<Part | PartOperation>,
|
|
11824
11824
|
options?: GeometryServiceAsyncMethodConfig,
|
|
11825
11825
|
): Array<PartOperation>;
|
|
11826
11826
|
/**
|
|
@@ -11828,8 +11828,8 @@ interface GeometryService extends Instance {
|
|
|
11828
11828
|
*/
|
|
11829
11829
|
SubtractAsync(
|
|
11830
11830
|
this: GeometryService,
|
|
11831
|
-
part:
|
|
11832
|
-
parts:
|
|
11831
|
+
part: Part | PartOperation,
|
|
11832
|
+
parts: ReadonlyArray<Part | PartOperation>,
|
|
11833
11833
|
options?: GeometryServiceAsyncMethodConfig,
|
|
11834
11834
|
): Array<PartOperation>;
|
|
11835
11835
|
/**
|
|
@@ -11837,8 +11837,8 @@ interface GeometryService extends Instance {
|
|
|
11837
11837
|
*/
|
|
11838
11838
|
UnionAsync(
|
|
11839
11839
|
this: GeometryService,
|
|
11840
|
-
part:
|
|
11841
|
-
parts:
|
|
11840
|
+
part: Part | PartOperation,
|
|
11841
|
+
parts: ReadonlyArray<Part | PartOperation>,
|
|
11842
11842
|
options?: GeometryServiceAsyncMethodConfig,
|
|
11843
11843
|
): Array<PartOperation>;
|
|
11844
11844
|
}
|