From e594699dc79c9e8794afbea8614754fe55a2318e Mon Sep 17 00:00:00 2001 From: Ryan Bosher Date: Mon, 20 Oct 2025 09:55:20 +1300 Subject: [PATCH] export type SyncOptionsTuple --- src/lib/main.ts | 2 +- src/lib/types.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/main.ts b/src/lib/main.ts index 6470423..3e459a5 100644 --- a/src/lib/main.ts +++ b/src/lib/main.ts @@ -8,7 +8,7 @@ import type { } from "./finders"; import type { SyncOptions, AsyncOptions } from "./types"; -export type { FzfResultItem, Selector, Tiebreaker } from "./types"; +export type { FzfResultItem, Selector, Tiebreaker, SyncOptionsTuple } from "./types"; export * from "./matchers"; export * from "./tiebreakers"; diff --git a/src/lib/types.ts b/src/lib/types.ts index 0aff6cf..06fa57d 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -152,3 +152,5 @@ export type AsyncOptions = BaseOptions & { token: Token ) => Promise[]>; }; + +export type { SyncOptionsTuple } from "./finders";