| Current Path : /var/www/homesaver/www/bitrix/modules/main/install/js/main/core/src/lib/types/ |
| Current File : /var/www/homesaver/www/bitrix/modules/main/install/js/main/core/src/lib/types/ajax.js |
import type { JsonObject } from './json';
export type AjaxResponse<DataType> = {
status: 'success' | 'error' | 'denied',
errors: AjaxError[],
data: DataType,
};
export type AjaxError = {
message: string,
code: string | number,
customData: JsonObject | null,
};