From db8cf4756f0a4a4fd3ecd6c5af93257e3c8c2df7 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 27 Jul 2026 07:10:40 +0000 Subject: [PATCH] chore: drop unused export modifier on SubscribeSourceFactory The type is only referenced by SubscribeSource within the same file; nothing imports it and the useSubscribe barrel does not re-export types.ts, so the export was dead surface. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01R9ch8GmdfsE2RPy8adBGPo --- src/lib/binding/useSubscribe/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/binding/useSubscribe/types.ts b/src/lib/binding/useSubscribe/types.ts index a0a873b..96ad78f 100644 --- a/src/lib/binding/useSubscribe/types.ts +++ b/src/lib/binding/useSubscribe/types.ts @@ -1,6 +1,6 @@ import type { Observable } from "rxjs" -export type SubscribeSourceFactory = +type SubscribeSourceFactory = | (() => Observable) | (() => Observable | undefined) | (() => Promise)