From b7641838fed4cdca65c496590c918c4101402673 Mon Sep 17 00:00:00 2001 From: Minh Hieu <47441476+ken-kuro@users.noreply.github.com> Date: Tue, 4 Jul 2023 16:00:24 +0700 Subject: [PATCH] fix: HostOptions typings --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 0d1089c..209fab7 100644 --- a/index.d.ts +++ b/index.d.ts @@ -74,7 +74,7 @@ declare namespace Pusher { } interface HostOptions extends BaseOptions { host: string - port?: string + port?: number } export type Options = ClusterOptions | HostOptions