From 758c420e2fad18fb21b83569e432370fb399b165 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 30 Aug 2021 15:01:52 +0100 Subject: [PATCH] fix(types): add stream to protocol string union type --- types.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.d.ts b/types.d.ts index 01dce46..cf7b22c 100644 --- a/types.d.ts +++ b/types.d.ts @@ -17,7 +17,7 @@ declare module "hot-shots" { path?: string; port?: number; prefix?: string; - protocol?: 'tcp' | 'udp' | 'uds'; + protocol?: 'tcp' | 'udp' | 'uds' | 'stream'; sampleRate?: number; socket?: dgram.Socket; suffix?: string;