8 lines
183 B
TypeScript
8 lines
183 B
TypeScript
|
import { Application } from 'typedoc';
|
||
|
|
||
|
import { ProfectusTheme } from './theme';
|
||
|
|
||
|
export function load(app: Application) {
|
||
|
app.renderer.defineTheme('profectus', ProfectusTheme);
|
||
|
}
|