KnodesCommunity/typedoc-plugins

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { ANodeReflection } from './a-node-reflection';
import { PagesPluginReflectionKind } from './reflection-kind';

export class MenuReflection extends ANodeReflection {
    public constructor(
        name: string,
        module: ANodeReflection.Module,
        parent: ANodeReflection.Parent | undefined,
        public readonly url: string,
    ){
        super( name, PagesPluginReflectionKind.MENU, module, parent );
    }
}