@mescius/wijmo 5.20251.35-nightly.d20250611.t032156 → 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.t032156
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
  *
@@ -1265,6 +1271,7 @@ export declare function clamp(value: number, min: number, max: number): number;
1265
1271
  */
1266
1272
  export declare function copy(dst: any, src: any, copySubObjects?: boolean, copyNativeSubObjects?: boolean): any;
1267
1273
  export declare function _isPlainObject(value: any): boolean;
1274
+ export declare function _isPrototypeMismatch(srcVal: any, dstVal: any): boolean;
1268
1275
  /**
1269
1276
  * Checks if given property of an object is writable
1270
1277
  * @param obj Object whose property needs to check