diff --git a/Documentation/Function/Build.Build.html b/Documentation/Function/Build.Build.html index 39e3ff81..ad6d86e9 100644 --- a/Documentation/Function/Build.Build.html +++ b/Documentation/Function/Build.Build.html @@ -59,11 +59,10 @@
Optional

A string representing the TypeScript option.

-

Returns Promise<void>

A promise that resolves when the processing is complete.

- +

Returns Promise<void>

+
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/Build.ts:18
  • -

    Returns Promise<void>

    A promise that resolves when the command execution is complete.

    - +

    Returns Promise<void>

    +
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/Exec.ts:20
  • -

    Returns Promise<void>

    A promise that resolves when the command execution is complete.

    - +

    Returns Promise<void>

    +
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/Exec.ts:20
  • +
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/File.ts:20
  • +
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/JSON.ts:19
  • -

    Returns Promise<void>

    A promise that resolves when the processing is complete.

    - +

    Returns Promise<void>

    +
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/Build.ts:18
  • -

    Returns Promise<void>

    A promise that resolves when the command execution is complete.

    - +

    Returns Promise<void>

    +
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/Exec.ts:20
  • +
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/File.ts:20
  • +
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/JSON.ts:19
  • +
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/Exec.ts:1
  • Index

    diff --git a/Documentation/modules/File.html b/Documentation/modules/File.html index 3f895a9b..64d46e39 100644 --- a/Documentation/modules/File.html +++ b/Documentation/modules/File.html @@ -29,7 +29,7 @@

    Theme

    +
  • Defined in Application/NikolaRHristov/NPM/TypeScriptESBuild/Source/Interface/JSON.ts:1
  • Index

    diff --git a/Source/Interface/Build.ts b/Source/Interface/Build.ts index 8f8fc77e..ca1a77fd 100644 --- a/Source/Interface/Build.ts +++ b/Source/Interface/Build.ts @@ -6,15 +6,14 @@ export default interface Type { /** * Represents a function that processes file patterns. * - * @param {Pattern[]} File - An array of file patterns to be processed. Each pattern can include wildcards (*) to match multiple files. + * @param File - An array of file patterns to be processed. Each pattern can include wildcards (*) to match multiple files. * - * @param {Object} [Option] - An optional object that can contain two properties. + * @param Option - An optional object that can contain two properties. * - * @param {string} [Option.ESBuild] - A string representing the ESBuild option. + * @param Option.ESBuild - A string representing the ESBuild option. * - * @param {string} [Option.TypeScript] - A string representing the TypeScript option. + * @param Option.TypeScript - A string representing the TypeScript option. * - * @returns {Promise} A promise that resolves when the processing is complete. */ ( File: Pattern[], diff --git a/Source/Interface/Exec.ts b/Source/Interface/Exec.ts index 74f1cd51..50666a47 100644 --- a/Source/Interface/Exec.ts +++ b/Source/Interface/Exec.ts @@ -16,7 +16,6 @@ export default interface Type { * to a function, the function will be called with the stdout data as a parameter for custom * logging. If not provided, stdout will be logged to the console by default. * - * @returns {Promise} A promise that resolves when the command execution is complete. */ ( Command: string, diff --git a/Source/Interface/File.ts b/Source/Interface/File.ts index ddf407da..d028236b 100644 --- a/Source/Interface/File.ts +++ b/Source/Interface/File.ts @@ -15,7 +15,6 @@ export default interface Type { * @param {string} Path - The 'Path' parameter is a string that represents the file path of the file * you want to process. * - * @returns {Promise} A promise that resolves with the default export of the module imported using the provided 'Path'. */ // rome-ignore lint/suspicious/noExplicitAny: (Path: string): Promise; diff --git a/Source/Interface/JSON.ts b/Source/Interface/JSON.ts index 87b2e88f..9447d0c2 100644 --- a/Source/Interface/JSON.ts +++ b/Source/Interface/JSON.ts @@ -15,7 +15,6 @@ export default interface Type { * it will be used as the base directory path. If `From` is not provided, the current * directory will be used as the base directory path. * - * @returns {Promise>} */ (File: string, From?: string): Promise>; } diff --git a/Target/Interface/Build.d.ts b/Target/Interface/Build.d.ts index 9e4a4006..d43567b0 100644 --- a/Target/Interface/Build.d.ts +++ b/Target/Interface/Build.d.ts @@ -6,15 +6,14 @@ export default interface Type { /** * Represents a function that processes file patterns. * - * @param {Pattern[]} File - An array of file patterns to be processed. Each pattern can include wildcards (*) to match multiple files. + * @param File - An array of file patterns to be processed. Each pattern can include wildcards (*) to match multiple files. * - * @param {Object} [Option] - An optional object that can contain two properties. + * @param Option - An optional object that can contain two properties. * - * @param {string} [Option.ESBuild] - A string representing the ESBuild option. + * @param Option.ESBuild - A string representing the ESBuild option. * - * @param {string} [Option.TypeScript] - A string representing the TypeScript option. + * @param Option.TypeScript - A string representing the TypeScript option. * - * @returns {Promise} A promise that resolves when the processing is complete. */ (File: Pattern[], Option?: { ESBuild?: string; diff --git a/Target/Interface/Exec.d.ts b/Target/Interface/Exec.d.ts index d7f43d0f..b424bbc7 100644 --- a/Target/Interface/Exec.d.ts +++ b/Target/Interface/Exec.d.ts @@ -16,7 +16,6 @@ export default interface Type { * to a function, the function will be called with the stdout data as a parameter for custom * logging. If not provided, stdout will be logged to the console by default. * - * @returns {Promise} A promise that resolves when the command execution is complete. */ (Command: string, Echo?: false | ((Return: any) => void)): Promise; } diff --git a/Target/Interface/File.d.ts b/Target/Interface/File.d.ts index c0c7faff..2b3d07ac 100644 --- a/Target/Interface/File.d.ts +++ b/Target/Interface/File.d.ts @@ -15,7 +15,6 @@ export default interface Type { * @param {string} Path - The 'Path' parameter is a string that represents the file path of the file * you want to process. * - * @returns {Promise} A promise that resolves with the default export of the module imported using the provided 'Path'. */ (Path: string): Promise; } diff --git a/Target/Interface/JSON.d.ts b/Target/Interface/JSON.d.ts index 936aeb22..6ea2f928 100644 --- a/Target/Interface/JSON.d.ts +++ b/Target/Interface/JSON.d.ts @@ -15,7 +15,6 @@ export default interface Type { * it will be used as the base directory path. If `From` is not provided, the current * directory will be used as the base directory path. * - * @returns {Promise>} */ (File: string, From?: string): Promise>; }