flamerest 1.0.40 → 1.0.41

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.
Files changed (2) hide show
  1. package/REST.d.ts +2 -1
  2. package/package.json +1 -1
package/REST.d.ts CHANGED
@@ -136,7 +136,8 @@ export function logout(): object;
136
136
 
137
137
  /**
138
138
  * Подготовить объект под загрузку: загрузить данные из элементов [type=file]
139
+ * Работает ссылочно, меняя основной массив
139
140
  * @param values
140
141
  */
141
- export function prepare(values: object): object;
142
+ export function prepare(values: any): Promise<any>;
142
143
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flamerest",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "description": "",
5
5
  "main": "REST.js",
6
6
  "typings": "./REST.d.ts",