import { URLRequest as URLRequestAway } from '@awayjs/core'; import { ASObject, ASArray } from '@awayfl/avm2'; /** * Copyright 2014 Mozilla Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export declare class URLRequest extends ASObject { static axClass: typeof URLRequest; private _adaptee; private _data; constructor(url?: string); get adaptee(): URLRequestAway; set adaptee(value: URLRequestAway); get url(): string; set url(value: string); get data(): ASObject; set data(value: ASObject); /** * Query data for request, taht mapped onto JS, this is because we can't convert data to JS in assigment * data is object, and AS sometimes fill data after assigment */ mapToJSData(): any; get method(): string; set method(value: string); get contentType(): string; set contentType(value: string); get requestHeaders(): ASArray; set requestHeaders(value: ASArray); get digest(): string; set digest(value: string); } //# sourceMappingURL=URLRequest.d.ts.map