diff options
Diffstat (limited to 'std/fs')
-rw-r--r-- | std/fs/expand_glob.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/fs/expand_glob.ts b/std/fs/expand_glob.ts index 6d1f883b5..7d9f0d870 100644 --- a/std/fs/expand_glob.ts +++ b/std/fs/expand_glob.ts @@ -18,7 +18,7 @@ import { assert } from "../_util/assert.ts"; const isWindows = Deno.build.os == "windows"; -export interface ExpandGlobOptions extends GlobOptions { +export interface ExpandGlobOptions extends Omit<GlobOptions, "os"> { root?: string; exclude?: string[]; includeDirs?: boolean; |