profectus-docs/profectus-theme/index.ts

8 lines
183 B
TypeScript
Raw Normal View History

2022-03-11 06:36:06 +00:00
import { Application } from 'typedoc';
import { ProfectusTheme } from './theme';
export function load(app: Application) {
app.renderer.defineTheme('profectus', ProfectusTheme);
}