@syncfusion/ej2-filemanager
Version:
Essential JS 2 FileManager Component
36 lines (30 loc) • 636 B
TypeScript
import { Property, ChildProperty } from '@syncfusion/ej2-base';
/**
* Interface for a class AjaxSettings
*/
export interface AjaxSettingsModel {
/**
* Specifies URL to download the files from server.
*
* @default null
*/
downloadUrl?: string;
/**
* Specifies URL to get the images from server.
*
* @default null
*/
getImageUrl?: string;
/**
* Specifies URL to upload the files to server.
*
* @default null
*/
uploadUrl?: string;
/**
* Specifies URL to read the files from server.
*
* @default null
*/
url?: string;
}