summaryrefslogtreecommitdiff
path: root/std/fs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-08-06 13:46:31 +0100
committerGitHub <noreply@github.com>2020-08-06 08:46:31 -0400
commit24590b012f72ba1a02a5b90ef6c1156606a6ea53 (patch)
tree515f09d4e39213eed07720843e3b4ef39619d3b3 /std/fs
parentf6cd36f8c84ed373930431c325d9c23b78600b74 (diff)
refactor: Rewrite globToRegExp() (#6963)
Diffstat (limited to 'std/fs')
-rw-r--r--std/fs/expand_glob.ts2
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;