diff --git a/Source/Interface/Theme.ts b/Source/Interface/Theme.ts
index 9f57a7b6..2f3506c7 100644
--- a/Source/Interface/Theme.ts
+++ b/Source/Interface/Theme.ts
@@ -38,8 +38,5 @@ import type Mapping from "./Mapping.js";
import type {
DeclarationReflection,
DefaultTheme,
- DefaultThemeRenderContext,
- PageEvent,
- Reflection,
UrlMapping,
} from "typedoc";
diff --git a/Target/Class/TypeScriptESBuild.js b/Target/Class/TypeScriptESBuild.js
index 069a1ba7..49206a5a 100644
--- a/Target/Class/TypeScriptESBuild.js
+++ b/Target/Class/TypeScriptESBuild.js
@@ -1,2 +1,2 @@
#!/usr/bin/env node
-var i=new(await import("commander")).Command().name("TypeScriptESBuild").version("0.2.26").description("Builds files").argument("","Files to build").option("-es, --ESBuild ","esbuild configuration file").option("-ts, --TypeScript ","TypeScript configuration file").action((await import("../Function/Build.js")).default).parse();export{i as default};
+var i=new(await import("commander")).Command().name("TypeScriptESBuild").version("0.3.0").description("Builds files").argument("","Files to build").option("-es, --ESBuild ","esbuild configuration file").option("-ts, --TypeScript ","TypeScript configuration file").action((await import("../Function/Build.js")).default).parse();export{i as default};
diff --git a/Target/Interface/Theme.d.ts b/Target/Interface/Theme.d.ts
index 781fe746..61e6eb43 100644
--- a/Target/Interface/Theme.d.ts
+++ b/Target/Interface/Theme.d.ts
@@ -4,15 +4,6 @@
* Represents an interface for defining a theme with various methods and properties.
*/
export default interface Type extends DefaultTheme {
- /**
- * A function that gets the render context for the DefaultTheme.
- *
- * @param Reflection - The DeclarationReflection for which URLs are being built.
- *
- * @param URLs - An array of URLs mappings with any data type.
- *
- */
- getRenderContext(Event: PageEvent): DefaultThemeRenderContext;
/**
* A function that builds URLs for a given DeclarationReflection and an array of URLs mappings.
*
@@ -35,4 +26,4 @@ export default interface Type extends DefaultTheme {
Mapping: Mapping[];
}
import type Mapping from "./Mapping.js";
-import type { DeclarationReflection, DefaultTheme, DefaultThemeRenderContext, PageEvent, Reflection, UrlMapping } from "typedoc";
+import type { DeclarationReflection, DefaultTheme, UrlMapping } from "typedoc";
diff --git a/package.json b/package.json
index 948620cf..95061ac2 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "typescript-esbuild",
- "version": "0.2.26",
+ "version": "0.3.0",
"private": false,
"description": "🌀 Builds all your TypeScript files into JavaScript and generates documentation for it using TypeDoc.",
"keywords": [
A function that gets the render context for the DefaultTheme.
-