Skip to content

Commit

Permalink
client: rename a type
Browse files Browse the repository at this point in the history
  • Loading branch information
eilvelia committed May 20, 2024
1 parent 2f247f9 commit 7df7aff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tdl/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export type Off =
& ((event: 'error', listener: (...args: any[]) => any) => boolean)
& ((event: 'close', listener: (...args: any[]) => any) => boolean)

export type ManagingOptions = {
export type ManagingParameters = {
useOldTdjsonInterface: boolean,
receiveTimeout: number,
bare: boolean,
Expand Down Expand Up @@ -163,7 +163,7 @@ export class Client {

constructor (
tdjson: Tdjson,
managing: ManagingOptions,
managing: ManagingParameters,
options: ClientOptions = {},
) {
this._options = mergeDeepRight(defaultOptions, options)
Expand Down

0 comments on commit 7df7aff

Please sign in to comment.