Fix type definition

This commit is contained in:
delvedor
2021-04-19 07:30:14 +02:00
parent a0786f2705
commit 146fde308a

2
api/new.d.ts vendored
View File

@ -66,7 +66,7 @@ declare type extendsCallback = (options: ClientExtendsCallbackOptions) => any;
// /Extend API
declare type callbackFn<TResponse, TContext> = (err: ApiError, result: ApiResponse<TResponse, TContext>) => void;
interface Client {
declare class Client {
connectionPool: ConnectionPool
transport: Transport
serializer: Serializer