Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Sep 27, 2023
1 parent fe8ee89 commit 49467df
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions Source/Function/TypeDoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,14 @@ export const load = (app: Application) => {
class extends DefaultTheme {
override getRenderContext(
pageEvent: PageEvent<Reflection>
): ThemeContext {
return new ThemeContext(
this,
pageEvent,
this.application.options
);
): Context {
return new Context(this, pageEvent, this.application.options);
}
}
);
};

export default load;

import type { Application } from "typedoc";
import type { Application, PageEvent, Reflection } from "typedoc";
import { DefaultTheme, DefaultThemeRenderContext } from "typedoc";

0 comments on commit 49467df

Please sign in to comment.