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";