Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Feb 9, 2024
1 parent d50b0d9 commit 603f7a1
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 67 deletions.
67 changes: 33 additions & 34 deletions Target/Function/Integration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ declare const _default: Type;
export default _default;
import type Type from "../Interface/Integration.js";
import type Action from "files-pipe/Target/Interface/Action.js";
export declare const Default: Omit<{} & {
export declare const Default: {
CSS: {
csso: {
comments: false;
Expand Down Expand Up @@ -47,6 +47,21 @@ export declare const Default: Omit<{} & {
useShortDoctype: false;
};
};
JavaScript: {
terser: {
ecma: 5;
enclose: false;
keep_classnames: false;
keep_fnames: false;
ie8: false;
module: false;
safari10: false;
toplevel: false;
format: {
comments: false;
};
};
};
Image: {
sharp: {
avif: {
Expand Down Expand Up @@ -76,21 +91,6 @@ export declare const Default: Omit<{} & {
};
};
};
JavaScript: {
terser: {
ecma: 5;
enclose: false;
keep_classnames: false;
keep_fnames: false;
ie8: false;
module: false;
safari10: false;
toplevel: false;
format: {
comments: false;
};
};
};
SVG: {
svgo: {
multipass: true;
Expand All @@ -115,25 +115,24 @@ export declare const Default: Omit<{} & {
JavaScript: "terser";
SVG: "svgo";
};
Path: string[];
Cache: {
Search: string;
Folder: string;
Action: {
Failed: ({ Input }: {
Input: any;
}) => Promise<string>;
Passed: ({ Before, Buffer }: {
Before: any;
Buffer: any;
}) => Promise<boolean>;
Accomplished: ({ Input, Before, After }: {
Input: any;
Before: any;
After: any;
}) => Promise<string>;
Changed: (Plan: any) => Promise<any>;
};
Logger: 2;
Action: Omit<{} & {
Failed: ({ Input }: import("files-pipe/Target/Interface/File.js").default) => Promise<string>;
Passed: ({ Before, Buffer }: import("files-pipe/Target/Interface/File.js").default) => Promise<boolean>;
Accomplished: ({ Input, Before, After }: import("files-pipe/Target/Interface/File.js").default) => Promise<string>;
Changed: (Plan: import("files-pipe/Target/Interface/Plan.js").default) => Promise<any>;
Read: ({ Input }: import("files-pipe/Target/Interface/File.js").default) => Promise<string>;
Wrote: ({ Buffer }: import("files-pipe/Target/Interface/File.js").default) => Promise<import("files-pipe/Target/Type/Buffer.js").Type>;
Fulfilled: ({ Files }: import("files-pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
}, "__proto__">;
Files: string;
Exclude: false;
}, "__proto__">;
export declare const Search: string;
Path: string[];
};
export declare const Search: any;
export declare const Merge: import("../Interface/Merge.js").default<import("../Interface/Merge.js").Generic>;
export declare const Defaultsharp: typeof import("sharp");
export declare let _Action: Action;
65 changes: 32 additions & 33 deletions Target/Variable/Option.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @module Option
*
*/
declare const _default: Omit<{} & {
declare const _default: {
CSS: {
csso: {
comments: false;
Expand Down Expand Up @@ -42,6 +42,21 @@ declare const _default: Omit<{} & {
useShortDoctype: false;
};
};
JavaScript: {
terser: {
ecma: 5;
enclose: false;
keep_classnames: false;
keep_fnames: false;
ie8: false;
module: false;
safari10: false;
toplevel: false;
format: {
comments: false;
};
};
};
Image: {
sharp: {
avif: {
Expand Down Expand Up @@ -71,21 +86,6 @@ declare const _default: Omit<{} & {
};
};
};
JavaScript: {
terser: {
ecma: 5;
enclose: false;
keep_classnames: false;
keep_fnames: false;
ie8: false;
module: false;
safari10: false;
toplevel: false;
format: {
comments: false;
};
};
};
SVG: {
svgo: {
multipass: true;
Expand All @@ -110,22 +110,21 @@ declare const _default: Omit<{} & {
JavaScript: "terser";
SVG: "svgo";
};
Path: string[];
Cache: {
Search: string;
Folder: string;
Action: {
Failed: ({ Input }: {
Input: any;
}) => Promise<string>;
Passed: ({ Before, Buffer }: {
Before: any;
Buffer: any;
}) => Promise<boolean>;
Accomplished: ({ Input, Before, After }: {
Input: any;
Before: any;
After: any;
}) => Promise<string>;
Changed: (Plan: any) => Promise<any>;
};
Logger: 2;
Action: Omit<{} & {
Failed: ({ Input }: import("files-pipe/Target/Interface/File.js").default) => Promise<string>;
Passed: ({ Before, Buffer }: import("files-pipe/Target/Interface/File.js").default) => Promise<boolean>;
Accomplished: ({ Input, Before, After }: import("files-pipe/Target/Interface/File.js").default) => Promise<string>;
Changed: (Plan: import("files-pipe/Target/Interface/Plan.js").default) => Promise<any>;
Read: ({ Input }: import("files-pipe/Target/Interface/File.js").default) => Promise<string>;
Wrote: ({ Buffer }: import("files-pipe/Target/Interface/File.js").default) => Promise<import("files-pipe/Target/Type/Buffer.js").Type>;
Fulfilled: ({ Files }: import("files-pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
}, "__proto__">;
Files: string;
Exclude: false;
}, "__proto__">;
Path: string[];
};
export default _default;

0 comments on commit 603f7a1

Please sign in to comment.