Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Nov 1, 2023
1 parent eae7bda commit 6fed6dd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,16 @@ import {
writeAllSync,
} from "./deps.ts";

/** @internal */
/**
* `ExpandGlobOptions` from https://deno.land/std/fs/expand_glob.ts
* @internal
*/
type DenoStdExpandGlobOptions = import("./deps.ts").ExpandGlobOptions;
export type ExpandGlobOptions = DenoStdExpandGlobOptions;
/** @internal */
/**
* `WalkOptions` from https://deno.land/std/fs/walk.ts
* @internal
*/
type DenoStdWalkOptions = import("./deps.ts").WalkOptions;
export type WalkOptions = DenoStdWalkOptions;

Expand Down

0 comments on commit 6fed6dd

Please sign in to comment.