@awayjs/core
Version:
AwayJS core classes
44 lines (43 loc) • 760 B
TypeScript
export declare class URLRequest {
/**
* Object containing data to be transmited with URL Request ( URL Variables / binary / string )
*
*/
data: any;
/**
*
* away.net.URLRequestMethod.GET
* away.net.URLRequestMethod.POST
*
* @type {string}
*/
method: string;
/**
* Use asynchronous XMLHttpRequest
* @type {boolean}
*/
async: boolean;
/**
*
*/
private _url;
/**
* @param url
*/
constructor(url?: string);
/**
*
* @returns {string}
*/
get url(): string;
/**
*
* @param value
*/
set url(value: string);
/**
* dispose
*/
dispose(): void;
}
//# sourceMappingURL=URLRequest.d.ts.map