From b4cb81a8428bd9c00514d6a8d5c9e4f869d5bca1 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Tue, 7 May 2024 15:35:02 +0300 Subject: [PATCH] squash! --- Source/Class/Theme.ts | 4 ++-- Source/Function/Document.ts | 2 +- Source/Function/Exec.ts | 2 +- Source/Function/JSON.ts | 2 +- Source/Interface/Theme.ts | 2 +- Source/Variable/Load.ts | 2 +- Target/Function/Document.d.ts | 4 ++-- Target/Function/Exec.d.ts | 2 +- Target/Function/JSON.d.ts | 2 +- Target/Interface/Theme.d.ts | 2 +- Target/Variable/Load.d.ts | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Source/Class/Theme.ts b/Source/Class/Theme.ts index d4198bb..dc36c02 100644 --- a/Source/Class/Theme.ts +++ b/Source/Class/Theme.ts @@ -72,8 +72,8 @@ export default class extends DefaultTheme { // ]; } -// import type Mapping from "@Interface/Mapping.js"; -// import type Type from "@Interface/Theme.js"; +// import type Mapping from "../Interface/Mapping.js"; +// import type Type from "../Interface/Theme.js"; // export const { // DeclarationReflection, diff --git a/Source/Function/Document.ts b/Source/Function/Document.ts index e48a7bb..1f929ec 100644 --- a/Source/Function/Document.ts +++ b/Source/Function/Document.ts @@ -48,7 +48,7 @@ export default (async (...[File]: Parameters) => { ); }) satisfies Interface as Interface; -import type Interface from "@Interface/Document.js"; +import type Interface from "../Interface/Document.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"; diff --git a/Source/Interface/Theme.ts b/Source/Interface/Theme.ts index 53f069d..b4b3198 100644 --- a/Source/Interface/Theme.ts +++ b/Source/Interface/Theme.ts @@ -33,6 +33,6 @@ export default interface Interface extends DefaultTheme { Mapping: Mapping[]; } -import type Mapping from "@Interface/Mapping.js"; +import type Mapping from "../Interface/Mapping.js"; import type { DeclarationReflection, DefaultTheme, UrlMapping } from "typedoc"; diff --git a/Source/Variable/Load.ts b/Source/Variable/Load.ts index c903178..263f46c 100644 --- a/Source/Variable/Load.ts +++ b/Source/Variable/Load.ts @@ -9,6 +9,6 @@ export default { load, } satisfies Interface as Interface; -import type Interface from "@Interface/Load.js"; +import type Interface from "../Interface/Load.js"; export const { default: Theme } = await import("@Class/Theme.js"); diff --git a/Target/Function/Document.d.ts b/Target/Function/Document.d.ts index b5b8381..bacb34d 100644 --- a/Target/Function/Document.d.ts +++ b/Target/Function/Document.d.ts @@ -4,8 +4,8 @@ */ declare const _default: Interface; export default _default; -import type Interface from "@Interface/Document.js"; -export declare const Exec: import("../Interface/Exec").default; +import type Interface from "../Interface/Document.js"; +export declare const Exec: import("../Interface/Exec.js").default; export declare const resolve: (...paths: string[]) => string; export declare const Pipe: string[]; export declare const Current: string; diff --git a/Target/Function/Exec.d.ts b/Target/Function/Exec.d.ts index 5f95b96..dccd40a 100644 --- a/Target/Function/Exec.d.ts +++ b/Target/Function/Exec.d.ts @@ -4,4 +4,4 @@ */ declare const _default: Interface; export default _default; -import type Interface from "@Interface/Exec.js"; +import type Interface from "../Interface/Exec.js"; diff --git a/Target/Function/JSON.d.ts b/Target/Function/JSON.d.ts index 87feaa6..2f74f5d 100644 --- a/Target/Function/JSON.d.ts +++ b/Target/Function/JSON.d.ts @@ -4,4 +4,4 @@ */ declare const _default: Interface; export default _default; -import type Interface from "@Interface/JSON.js"; +import type Interface from "../Interface/JSON.js"; diff --git a/Target/Interface/Theme.d.ts b/Target/Interface/Theme.d.ts index 15dd5a7..fdb535b 100644 --- a/Target/Interface/Theme.d.ts +++ b/Target/Interface/Theme.d.ts @@ -25,5 +25,5 @@ export default interface Interface extends DefaultTheme { */ Mapping: Mapping[]; } -import type Mapping from "@Interface/Mapping.js"; +import type Mapping from "../Interface/Mapping.js"; import type { DeclarationReflection, DefaultTheme, UrlMapping } from "typedoc"; diff --git a/Target/Variable/Load.d.ts b/Target/Variable/Load.d.ts index 9da66bf..a7faf09 100644 --- a/Target/Variable/Load.d.ts +++ b/Target/Variable/Load.d.ts @@ -5,5 +5,5 @@ export declare const load: (Application: import("typedoc").Application) => void; declare const _default: Interface; export default _default; -import type Interface from "@Interface/Load.js"; +import type Interface from "../Interface/Load.js"; export declare const Theme: typeof import("@Class/Theme.js").default;