@dxtmisha/functional-basic 0.1.0 → 0.1.4

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.
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Copies a simple object.
3
+ *
4
+ * Копирует простой объект.
5
+ * @param value объект для копирования/ object for copying
6
+ * @param source дополнительные свойства для копирования/ additional properties for copying
7
+ * @returns возвращает новую копию объекта/ returns a new copy of the object
8
+ */
9
+ export declare function copyObjectLite<T, R = T>(value: T, source?: any): R;
package/dist/library.d.ts CHANGED
@@ -31,6 +31,7 @@ export * from './functions/anyToString';
31
31
  export * from './functions/applyTemplate';
32
32
  export * from './functions/arrFill';
33
33
  export * from './functions/copyObject';
34
+ export * from './functions/copyObjectLite';
34
35
  export * from './functions/createElement';
35
36
  export * from './functions/domQuerySelector';
36
37
  export * from './functions/domQuerySelectorAll';