From ffe23d797c318a8dd88fec8611621a173eb66dc9 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Tue, 7 May 2024 15:34:58 +0300 Subject: [PATCH] squash! --- Source/Function/Adapt.ts | 2 +- Source/Function/Exec.ts | 2 +- Source/Function/JSON.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Function/Adapt.ts b/Source/Function/Adapt.ts index e3021b3..ca51251 100644 --- a/Source/Function/Adapt.ts +++ b/Source/Function/Adapt.ts @@ -6,7 +6,7 @@ export default (async ( ...[File]: Parameters ) => {}) satisfies Interface as Interface; -import type Interface from "@Interface/Adapt.js"; +import type Interface from "../Interface/Adapt.js"; export const { default: Exec } = await import("@Function/Exec.js"); diff --git a/Source/Function/Exec.ts b/Source/Function/Exec.ts index 2ffadfd..57cd6c8 100644 --- a/Source/Function/Exec.ts +++ b/Source/Function/Exec.ts @@ -19,4 +19,4 @@ export default (async ( } }) satisfies Interface as Interface; -import type Interface from "@Interface/Exec.js"; +import type Interface from "../Interface/Exec.js"; diff --git a/Source/Function/JSON.ts b/Source/Function/JSON.ts index 1fa55f3..884a6ac 100644 --- a/Source/Function/JSON.ts +++ b/Source/Function/JSON.ts @@ -11,4 +11,4 @@ export default (async (...[File, From]: Parameters) => ).toString() )) satisfies Interface as Interface; -import type Interface from "@Interface/JSON.js"; +import type Interface from "../Interface/JSON.js";