Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Apr 4, 2024
1 parent 2ff5dbd commit 60b25e6
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 63 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/GitHub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
TELEMETRY_DISABLED: 1

steps:
- uses: pozil/auto-assign-issue@v1.13.0
- uses: pozil/auto-assign-issue@v1.14.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
assignees: NikolaRHristov
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/Action.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Represents the execution configuration for specific actions on files.
*
*/
export default interface Type {
export default interface Interface {
/**
* Attaches a callback for the fulfillment of the Action.
*
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/Apply.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @module Apply
*
*/
export default interface Type {
export default interface Interface {
/**
* The function `Apply` takes a function `_Function` and a test value `Test`, and applies `_Function` to `Test` based
* on its type (Map, Set, Array, or other) and returns the result.
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/By.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @module By
*
*/
export default interface Type {
export default interface Interface {
/**
* The function `By` takes in a file pattern or an array of file patterns, a set
* of input and output paths, and a map of results, and returns the updated map
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/Bytes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @module Bytes
*
*/
export default interface Type {
export default interface Interface {
/**
* The function converts a given number of bytes into a human-readable format with appropriate units
* (e.g., KB, MB, GB).
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/Cache.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Represents the cache path configuration.
*
*/
export default interface Type {
export default interface Interface {
Search: string | URL;
Folder: string | URL;
}
50 changes: 0 additions & 50 deletions Target/Interface/Class.d.ts

This file was deleted.

2 changes: 1 addition & 1 deletion Target/Interface/Dir.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Represents a directory specification.
*
*/
export default interface Type {
export default interface Interface {
/**
* The input directory.
*/
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/File.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Represents a file specification.
*
*/
export default interface Type {
export default interface Interface {
/**
* The input file.
*/
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/In.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @module In
*
*/
export default interface Type {
export default interface Interface {
/**
* The function `In` takes a `Path` and a `Paths` object, and adds the `Path` to the `Paths` object.
*
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/Not.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @module Not
*
*/
export default interface Type {
export default interface Interface {
/**
*
* The function `Not` filters out files from the `File` array based on the provided `Pattern`
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/Option.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Represents options for configuring the behavior of the program.
*
*/
export default interface Type {
export default interface Interface {
/**
* Configuration for the target cache.
*
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/Pipe.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @module Pipe
*
*/
export default interface Type {
export default interface Interface {
/**
*
* The function Pipe takes a Plan and an Action object as input, and performs a series of
Expand Down
2 changes: 1 addition & 1 deletion Target/Interface/Plan.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Represents the execution's plan. It contains information about the tasks to be executed and their corresponding inputs and outputs.
*
*/
export default interface Type {
export default interface Interface {
/**
* Represents the cache configuration.
*/
Expand Down

0 comments on commit 60b25e6

Please sign in to comment.