@mxssfd/typedoc-theme
Version:
- demo - [example](https://mengxinssfd.github.io/typedoc-theme/) - [request-template](https://mengxinssfd.github.io/request-template/) - [example-code](https://github.com/mengxinssfd/typedoc-theme/tree/main/example)
12 lines (11 loc) • 398 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MyTheme = void 0;
const typedoc_1 = require("typedoc");
const ThemeContext_1 = require("./ThemeContext");
class MyTheme extends typedoc_1.DefaultTheme {
getRenderContext(pageEvent) {
return new ThemeContext_1.ThemeContext(this, pageEvent, this.application.options);
}
}
exports.MyTheme = MyTheme;