http client improved

This commit is contained in:
Vladimir Enchev
2014-04-29 16:59:42 +03:00
parent 162dbe56c9
commit f346a27a0e
4 changed files with 53 additions and 18 deletions

View File

@@ -367,8 +367,13 @@ declare module com {
}
}
export class AsyncHttpClient {
static getDefaultInstance(): any;
export module AsyncHttpClient {
function getDefaultInstance(): any;
export class StringCallback {
constructor(params: any);
static extends(params: any);
}
}
export module callback {
@@ -376,6 +381,12 @@ declare module com {
constructor(params: any);
}
}
export module body {
export class StringBody {
constructor(source: string);
}
}
}
}
}