Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/main/core/src/lib/types/
Upload File :
Current File : /var/www/homesaver/www/bitrix/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,
};