files-pipe
Advanced tools
Comparing version 2.0.6 to 2.0.7
{ | ||
"name": "files-pipe", | ||
"version": "2.0.6", | ||
"version": "2.0.7", | ||
"homepage": "https://github.com/baxast/files-pipe#readme", | ||
@@ -20,7 +20,8 @@ "bugs": { | ||
"deepmerge-ts": "5.1.0", | ||
"fast-glob": "3.3.1" | ||
"fast-glob": "3.3.1", | ||
"@types/node": "20.4.9" | ||
}, | ||
"devDependencies": { | ||
"baxast": "0.0.10" | ||
"baxast": "0.1.0" | ||
} | ||
} |
import type { Pattern } from "fast-glob"; | ||
import type { Execution, Options, Plan } from "../Option/Index.js"; | ||
import type { Execution, Options, Path, Plan } from "../Option/Index.js"; | ||
export default class Files { | ||
@@ -7,5 +7,5 @@ Pipe: (Execution?: Execution) => Promise<Plan>; | ||
By: (File?: Pattern | Pattern[]) => Promise<this>; | ||
In: (Path?: any) => Promise<this>; | ||
In: (Path?: Path) => Promise<this>; | ||
Plan: Plan; | ||
constructor(Debug?: Plan["Debug"]); | ||
} |
@@ -1,3 +0,3 @@ | ||
import type { Plan } from "../../Option/Index.js"; | ||
declare const _default: (Path: any, Paths: Plan["Paths"]) => Promise<Map<string, string>>; | ||
import type { Path, Plan } from "../../Option/Index.js"; | ||
declare const _default: (Path: Path, Paths: Plan["Paths"]) => Promise<Map<string, string>>; | ||
export default _default; |
10902
23
124
3
+ Added@types/node@20.4.9
+ Added@types/node@20.4.9(transitive)