@base-framework/base 3.0.307 → 3.0.309
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.
|
@@ -175,6 +175,13 @@ export class ModelService {
|
|
|
175
175
|
* @returns {object}
|
|
176
176
|
*/
|
|
177
177
|
protected setupRequest(url: string, method: string, params: (string | object), callBack: Function, requestCallBack?: Function): object;
|
|
178
|
+
/**
|
|
179
|
+
* This will replace the url params with the model data.
|
|
180
|
+
*
|
|
181
|
+
* @param {string} url
|
|
182
|
+
* @returns {string}
|
|
183
|
+
*/
|
|
184
|
+
replaceUrl(url: string): string;
|
|
178
185
|
/**
|
|
179
186
|
* This will check if the data is a form data object.
|
|
180
187
|
*
|