@minecraft/debug-utilities 1.0.0-beta.1.21.130-preview.20 → 1.0.0-beta.1.21.130-preview.22
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/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -175,16 +175,16 @@ export class DebugShape {
|
|
|
175
175
|
/**
|
|
176
176
|
* @remarks
|
|
177
177
|
* The time left (in seconds) until this shape is automatically
|
|
178
|
-
* removed. Returns
|
|
179
|
-
* life-span.
|
|
178
|
+
* removed. Returns undefined if the shape does not have a
|
|
179
|
+
* limited life-span.
|
|
180
180
|
*
|
|
181
181
|
*/
|
|
182
182
|
timeLeft?: number;
|
|
183
183
|
/**
|
|
184
184
|
* @remarks
|
|
185
185
|
* The total initial time-span (in seconds) until this shape is
|
|
186
|
-
* automatically removed. Returns
|
|
187
|
-
* a limited life-span.
|
|
186
|
+
* automatically removed. Returns undefined if the shape does
|
|
187
|
+
* not have a limited life-span.
|
|
188
188
|
*
|
|
189
189
|
*/
|
|
190
190
|
readonly totalTimeLeft?: number;
|