KnodesCommunity/typedoc-plugins

View on GitHub
packages/plugin-pages/src/models/reflections/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { MenuReflection } from './menu-reflection';
import { PageReflection } from './page-reflection';

export type NodeReflection = MenuReflection | PageReflection;
export { MenuReflection, PageReflection };
export { PagesPluginReflectionKind } from './reflection-kind';
export { ANodeReflection } from './a-node-reflection';