bt-core-app 1.4.328 → 1.4.329
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/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -294,7 +294,7 @@ export declare function containsSearch(value?: string, str?: string): boolean;
|
|
|
294
294
|
export declare function containsWeekday(weekdays?: string, wkDay?: string): boolean;
|
|
295
295
|
|
|
296
296
|
/**copies object and all descendant properties */
|
|
297
|
-
export declare function copyDeep(aObject:
|
|
297
|
+
export declare function copyDeep<T>(aObject: T): T;
|
|
298
298
|
|
|
299
299
|
/**copies object and returns copied object with descendant properties placed in alphabetical order */
|
|
300
300
|
export declare function copyItemByAlphabet(aObject: any): any;
|
package/package.json
CHANGED