From 1c68f99677d5e03d23c8e637e17b8fb711bd124f Mon Sep 17 00:00:00 2001 From: achingbrain Date: Thu, 25 Apr 2024 18:07:33 +0100 Subject: [PATCH] fix: re-export the Options type from fast-glob Allow consumers to reuse the Options type without having to depend on `fast-glob` too. --- packages/it-glob/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/it-glob/src/index.ts b/packages/it-glob/src/index.ts index 584ea2b5..2bdb9963 100644 --- a/packages/it-glob/src/index.ts +++ b/packages/it-glob/src/index.ts @@ -26,6 +26,8 @@ import path from 'node:path' import fastGlob from 'fast-glob' import type { Options } from 'fast-glob' +export type { Options } + /** * Async iterable filename pattern matcher */