tg-map-vue3 3.6.2 → 3.6.3
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/dist/src/utils/arrays.d.ts +2 -0
- package/dist/tg-map.js +295 -291
- package/dist/tg-map.js.map +1 -1
- package/dist/tg-map.umd.cjs +5 -5
- package/dist/tg-map.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -19,6 +19,8 @@ export declare namespace Arrays {
|
|
|
19
19
|
* @see https://stackoverflow.com/questions/56006111/is-it-possible-to-define-a-non-empty-array-type-in-typescript
|
|
20
20
|
*/
|
|
21
21
|
function isNotEmpty<T>(arr: T[]): arr is [T, ...T[]];
|
|
22
|
+
/** @see isNotEmpty */
|
|
23
|
+
function isNullOrEmpty<T>(arr: T[] | null | undefined): arr is [] | null | undefined;
|
|
22
24
|
}
|
|
23
25
|
export declare namespace MVCArrays {
|
|
24
26
|
function indexOf<T>(arr: google.maps.MVCArray<T>, item: T): number;
|