Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Mar 4, 2025
1 parent 40e891c commit a5e885b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Target/Class/Pipe.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import type Plan from "../Interface/Plan.js";
*
*/
export default class implements Interface {
In: (Path: import("../Type/Path.js").Type) => Promise<this>;
By: (File: string | string[]) => Promise<this>;
Not: (File: boolean | import("../Type/Exclude.js").Type | Set<import("../Type/Exclude.js").Type> | import("../Type/Exclude.js").Type[] | undefined) => Promise<this>;
Pipe: (Action?: import("../Interface/Action.js").default | undefined) => Promise<this>;
In: (...[Path]: Parameters<Interface["In"]>) => Promise<this>;
By: (...[File]: Parameters<Interface["By"]>) => Promise<this>;
Not: (...[Exclude]: Parameters<Interface["Not"]>) => Promise<this>;
Pipe: (...[_Action]: Parameters<Interface["Pipe"]>) => Promise<this>;
Plan: Plan;
constructor(Cache?: Option["Cache"], Logger?: Option["Logger"]);
}
Expand Down
2 changes: 1 addition & 1 deletion Target/Function/Pipe.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Target/Variable/Option.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a5e885b

Please sign in to comment.