Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Sep 30, 2023
1 parent f33cd42 commit 594bde2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Target/Class/TypeDoc/Theme.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ declare const default_base: typeof DefaultTheme;
*/
export default class extends default_base implements Type {
getRenderContext: (Event: PageEvent<import("typedoc").Reflection>) => Context;
buildUrls(...[Reflection, URLs]: Parameters<Type["buildURLs"]>): UrlMapping<any>[];
_getMapping: (Reflection: DeclarationReflection) => Mapping | undefined;
buildUrls(...[Reflection, URLs]: Parameters<Type["buildURLs"]>): any;
_Mapping: (Reflection: DeclarationReflection) => Mapping | undefined;
Mapping: Mapping[];
}
import type Context from "../../Interface/TypeDoc/Context.js";
import type Type from "../../Interface/TypeDoc/Theme.js";
import { DeclarationReflection, DefaultTheme, PageEvent, ReflectionKind, UrlMapping, type RenderTemplate } from "typedoc";
import { DeclarationReflection, DefaultTheme, PageEvent, ReflectionKind, type RenderTemplate } from "typedoc";
export declare const _Context: typeof import("./Context.js").default;
/**
* Defines a mapping of a {@link Models.Kind} to a template file.
Expand Down
2 changes: 1 addition & 1 deletion Target/Class/TypeDoc/Theme.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Target/Interface/TypeDoc/Theme.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
export default interface Type {
getRenderContext: (Event: PageEvent<Reflection>) => Context;
buildURLs: (Reflection: DeclarationReflection, URLs: UrlMapping<any>[]) => UrlMapping<any>[];
buildUrls: (Reflection: DeclarationReflection, URLs: UrlMapping<any>[]) => UrlMapping<any>[];
}
import type Context from "./Context.js";
import type { DeclarationReflection, PageEvent, Reflection, UrlMapping } from "typedoc";

0 comments on commit 594bde2

Please sign in to comment.