From eb3fc5bf7dcd8839700024689a8968d90de04679 Mon Sep 17 00:00:00 2001 From: YuShifan <894402575bt@gmail.com> Date: Fri, 10 May 2024 10:05:05 +0800 Subject: [PATCH] fix(cli): exclude delimiter in OmitSubscribeOptions --- cli/src/types/global.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/types/global.d.ts b/cli/src/types/global.d.ts index 785d1e9ff..d7f435959 100644 --- a/cli/src/types/global.d.ts +++ b/cli/src/types/global.d.ts @@ -121,7 +121,7 @@ declare global { type OmitSubscribeOptions = Omit< SubscribeOptions, - 'format' | 'outputMode' | 'protobufPath' | 'protobufMessageName' | 'debug' | 'fileWrite' | 'fileSave' + 'format' | 'outputMode' | 'protobufPath' | 'protobufMessageName' | 'debug' | 'fileWrite' | 'fileSave' | 'delimiter' > interface BenchSubscribeOptions extends OmitSubscribeOptions {