Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed May 7, 2024
1 parent 70d9a84 commit b4cb81a
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Source/Class/Theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion Source/Function/Document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default (async (...[File]: Parameters<Interface>) => {
);
}) 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");

Expand Down
2 changes: 1 addition & 1 deletion Source/Function/Exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
2 changes: 1 addition & 1 deletion Source/Function/JSON.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ export default (async (...[File, From]: Parameters<Interface>) =>
).toString()
)) satisfies Interface as Interface;

import type Interface from "@Interface/JSON.js";
import type Interface from "../Interface/JSON.js";
2 changes: 1 addition & 1 deletion Source/Interface/Theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
2 changes: 1 addition & 1 deletion Source/Variable/Load.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");
4 changes: 2 additions & 2 deletions Target/Function/Document.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
2 changes: 1 addition & 1 deletion Target/Function/Exec.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
2 changes: 1 addition & 1 deletion Target/Function/JSON.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
2 changes: 1 addition & 1 deletion Target/Interface/Theme.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
2 changes: 1 addition & 1 deletion Target/Variable/Load.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit b4cb81a

Please sign in to comment.