Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Oct 20, 2024
1 parent 9af8efb commit e9a4175
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source/Function/Document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type Interface from "../Interface/Document.js";
* @module Document
*
*/
export default (async (...[File, Option]: Parameters<Interface>) => {
export default (async (...[File, Option]) => {
for (const _File of File) {
for (const __File of await (
await import("fast-glob")
Expand Down
2 changes: 1 addition & 1 deletion Source/Function/Exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default (async (
...[
Command,
Echo = async (Return) => console.log(Return),
]: Parameters<Interface>
]
) => {
try {
const { stdout, stderr } = (await import("child_process")).exec(
Expand Down
2 changes: 1 addition & 1 deletion Source/Function/JSON.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type Interface from "../Interface/JSON.js";
* @module JSON
*
*/
export default (async (...[File, From]: Parameters<Interface>) =>
export default (async (...[File, From]) =>
JSON.parse(
(
await (
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"fast-glob": "3.3.2",
"typedoc": "0.26.10",
"typedoc-plugin-keywords": "1.6.0",
"typedoc-plugin-mdn-links": "3.3.3",
"typedoc-plugin-mdn-links": "3.3.4",
"typedoc-plugin-merge-modules": "6.0.2",
"typedoc-plugin-remove-references": "0.0.6",
"typedoc-plugin-rename-defaults": "0.7.1",
Expand Down

0 comments on commit e9a4175

Please sign in to comment.