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.
- package/REST.d.ts +2 -1
- 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:
|
|
142
|
+
export function prepare(values: any): Promise<any>;
|
|
142
143
|
|