Skip to content

Commit

Permalink
http.client: fix module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliy-art committed Mar 23, 2024
1 parent e5299d2 commit af7b460
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tarantoolscript",
"version": "0.13.1",
"version": "0.13.2",
"author": "Vitaliy Artemov [email protected]",
"description": "TypeScript definitions for Tarantool Lua API.",
"repository": {
Expand Down
3 changes: 2 additions & 1 deletion src/builtin/http.client/HttpClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { ClientOptions } from './ClientOptions';
import { ClientStat } from './ClientStat';
import { HttpMethod } from './HttpMethod';
import { IoObject } from './IoObject';
import { RequestOptions } from './RequestOptions';
import { ResponseObject } from './ResponseObject';

/**
Expand Down Expand Up @@ -237,4 +238,4 @@ export declare function stat(): ClientStat;
*
* Decoders used to deserialize response data based on the `Content-Type` header value.
*/
export declare let decoders: { [ key: string ]: (this: void) => (body: string, _content_type: unknown) => unknown };
export declare let decoders: { [key: string]: (this: void) => (body: string, _content_type: unknown) => unknown };

0 comments on commit af7b460

Please sign in to comment.