UNPKG

typedoc-plugin-typescript-declaration

Version:

Typedoc plugin to render to typescript declaration file

22 lines (18 loc) 502 B
'use strict'; var NavigationItem = require('typedoc/dist/lib/output/models/NavigationItem'); var theme = require('typedoc/dist/lib/output/theme'); class NoopTheme extends theme.Theme { constructor(renderer, basePath) { super(renderer, basePath); } isOutputDirectory(path) { return true; } getUrls(project) { return []; } getNavigation(project) { return new NavigationItem.NavigationItem(); } } module.exports = NoopTheme;