Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Sep 23, 2023
1 parent 6fca882 commit ef1f882
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Option/Index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ export interface Option extends _Option {

export default Merge(Default, {
Action: {},
} satisfies Option) as Option;
} satisfies Option);
18 changes: 17 additions & 1 deletion Target/Option/Index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,21 @@ import type { Option as _Option } from "files-pipe";
export interface Option extends _Option {
[key: string]: any;
}
declare const _default: Option;
declare const _default: Omit<{} & {
Cache: {
Search: string;
Folder: string;
};
Path: string;
Action: Omit<{} & {
Read: (On: import("files-pipe").File) => Promise<string>;
Wrote: (On: import("files-pipe").File) => Promise<import("files-pipe").Buffer>;
Passed: (On: import("files-pipe").File) => Promise<boolean>;
Failed: (On: import("files-pipe").File) => Promise<string>;
Accomplished: (On: import("files-pipe").File) => Promise<string>;
Fulfilled: (Plan: import("files-pipe/Target/Interface/Plan").Type) => Promise<string | false>;
Changed: (Plan: import("files-pipe/Target/Interface/Plan").Type) => Promise<import("files-pipe/Target/Interface/Plan").Type>;
}, "__proto__">;
Logger: 2;
}, "__proto__">;
export default _default;

0 comments on commit ef1f882

Please sign in to comment.