@mescius/wijmo 5.20251.35-nightly.d20250611.t173008 → 5.20251.35-nightly.d20250612.t172539

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * Wijmo Library 5.20251.35-nightly.d20250611.t173008
3
+ * Wijmo Library 5.20251.35-nightly.d20250612.t172539
4
4
  * https://developer.mescius.com/wijmo
5
5
  *
6
6
  * Copyright(c) MESCIUS inc. All rights reserved.
@@ -1042,6 +1042,12 @@ export declare function isFunction(value: any): value is Function;
1042
1042
  * @param value Value to test.
1043
1043
  */
1044
1044
  export declare function isUndefined(value: any): value is undefined;
1045
+ /**
1046
+ * Determines whether an object is null or undefined.
1047
+ *
1048
+ * @param value Value to test.
1049
+ */
1050
+ export declare function isNullOrUndefined(value: any): value is null | undefined;
1045
1051
  /**
1046
1052
  * Determines whether an object is a Date.
1047
1053
  *