nx/typedoc-theme/src/index.ts
2023-03-31 11:00:06 -04:00

7 lines
192 B
TypeScript

import { Application } from 'typedoc';
import NxMarkdownTheme from './lib/theme';
export function load(app: Application) {
app.renderer.defineTheme('nx-markdown-theme', NxMarkdownTheme);
}