Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Nov 22, 2024
1 parent 0cd49ed commit 951bc0d
Show file tree
Hide file tree
Showing 9 changed files with 2,135 additions and 655 deletions.
29 changes: 18 additions & 11 deletions Target/Function/Eliminate.d.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
import type Interface from "../Interface/Eliminate.js";

/**
* @module Eliminate
*
*/
declare const _default: Interface;
export default _default;
export declare const Merge: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
DeepMergeOthersURI: "DeepMergeLeafURI";
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
}>, Readonly<{
key: PropertyKey;
parents: ReadonlyArray<Readonly<Record<PropertyKey, unknown>>>;
}>>;
export declare const Merge: <Ts extends readonly unknown[]>(
...objects: Ts
) => import("deepmerge-ts").DeepMergeHKT<
Ts,
Readonly<{
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
DeepMergeOthersURI: "DeepMergeLeafURI";
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
}>,
Readonly<{
key: PropertyKey;
parents: ReadonlyArray<Readonly<Record<PropertyKey, unknown>>>;
}>
>;
export declare const Pipe: string[];
1 change: 1 addition & 0 deletions Target/Function/File.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type Interface from "../Interface/File.js";

/**
* @module File
*
Expand Down
28 changes: 17 additions & 11 deletions Target/Function/Merge.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@
* @module Merge
*
*/
declare const _default: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
DeepMergeOthersURI: "DeepMergeLeafURI";
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
}>, Readonly<{
key: PropertyKey;
parents: ReadonlyArray<Readonly<Record<PropertyKey, unknown>>>;
}>>;
declare const _default: <Ts extends readonly unknown[]>(
...objects: Ts
) => import("deepmerge-ts").DeepMergeHKT<
Ts,
Readonly<{
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
DeepMergeOthersURI: "DeepMergeLeafURI";
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
}>,
Readonly<{
key: PropertyKey;
parents: ReadonlyArray<Readonly<Record<PropertyKey, unknown>>>;
}>
>;
export default _default;
2,631 changes: 2,039 additions & 592 deletions Target/Function/Output.d.ts

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions Target/Interface/Eliminate.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
*
*/
export default interface Interface {
/**
* Represents a function that processes file patterns.
*
* @param Eliminate - A string representing the Eliminate option.
*
*/
(Eliminate?: string): Promise<void>;
/**
* Represents a function that processes file patterns.
*
* @param Eliminate - A string representing the Eliminate option.
*
*/
(Eliminate?: string): Promise<void>;
}
28 changes: 14 additions & 14 deletions Target/Interface/File.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
*
*/
export default interface Interface {
/**
* This function asynchronously processes a file located at the given path. If the file is a TypeScript
* (.ts) file, it performs the following steps:
* 1. Converts TypeScript code to JavaScript.
* 2. Creates a JavaScript module and emits it.
* 3. Writes the transpiled JavaScript code to a new file with a .js extension.
*
* Finally, it imports and returns the default export of the processed JavaScript module.
*
* @param Path - The 'Path' parameter is a string that represents the file path of the file
* you want to process.
*
*/
(Path: string): Promise<any>;
/**
* This function asynchronously processes a file located at the given path. If the file is a TypeScript
* (.ts) file, it performs the following steps:
* 1. Converts TypeScript code to JavaScript.
* 2. Creates a JavaScript module and emits it.
* 3. Writes the transpiled JavaScript code to a new file with a .js extension.
*
* Finally, it imports and returns the default export of the processed JavaScript module.
*
* @param Path - The 'Path' parameter is a string that represents the file path of the file
* you want to process.
*
*/
(Path: string): Promise<any>;
}
4 changes: 2 additions & 2 deletions Target/Interface/Option.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type Option from "@playform/pipe/Target/Interface/Option.js";

/**
* @module Option
*
*/
export default interface Interface extends Option {
}
export default interface Interface extends Option {}
2 changes: 1 addition & 1 deletion Target/Interface/Output.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
*
*/
export default interface Interface {
(Source: string): Promise<string>;
(Source: string): Promise<string>;
}
53 changes: 36 additions & 17 deletions Target/Variable/Eliminate.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,41 @@
*
*/
declare const _default: {
Cache: {
Search: string;
Folder: string;
};
Path: string;
Logger: 2;
Action: {
Read: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<import("@playform/pipe/Target/Type/Buffer.js").Type>;
Passed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<true>;
Failed: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Accomplished: ({ Input, Output }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
};
File: string;
Exclude: false;
Cache: {
Search: string;
Folder: string;
};
Path: string;
Logger: 2;
Action: {
Read: ({
Input,
}: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Wrote: ({
Buffer,
}: import("@playform/pipe/Target/Interface/File.js").default) => Promise<
import("@playform/pipe/Target/Type/Buffer.js").Type
>;
Passed: (
On: import("@playform/pipe/Target/Interface/File.js").default,
) => Promise<true>;
Failed: ({
Input,
}: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Accomplished: ({
Input,
Output,
}: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Fulfilled: ({
File,
}: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<
string | false
>;
Changed: (
Plan: import("@playform/pipe/Target/Interface/Plan.js").default,
) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
};
File: string;
Exclude: false;
};
export default _default;

0 comments on commit 951bc0d

Please sign in to comment.