Update build artifacts
This commit is contained in:
parent
7823091ed9
commit
534259f3a2
9
build/typertext.d.ts
vendored
9
build/typertext.d.ts
vendored
|
@ -106,13 +106,10 @@ declare module Typertext.Http {
|
|||
static FromUrl(location: string): HttpUrl;
|
||||
static DecodeQueryString(queryString: string): HttpQueryString;
|
||||
static EncodeQueryString(query: HttpQueryString): string;
|
||||
static URLEncodeObject(data: {
|
||||
[index: string]: string;
|
||||
}): string;
|
||||
static UrlEncodeObject(data: HttpQueryString): string;
|
||||
static UrlDecodeString(queryString: string): HttpQueryString;
|
||||
private static splitString(input, separator, limit?);
|
||||
constructor(domain: string, protocol?: HttpProtocol, path?: string, queryString?: {
|
||||
[index: string]: string;
|
||||
}, port?: number);
|
||||
constructor(domain: string, protocol?: HttpProtocol, path?: string, queryString?: HttpQueryString, port?: number);
|
||||
public ToString(): string;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -160,7 +160,7 @@ var Typertext;
|
|||
}
|
||||
|
||||
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
|
||||
xhr.send(Typertext.Http.HttpUrl.URLEncodeObject(postData));
|
||||
xhr.send(Typertext.Http.HttpUrl.UrlEncodeObject(postData));
|
||||
};
|
||||
return HttpRequest;
|
||||
})();
|
||||
|
|
Reference in a new issue