@ng-doc/core
Version:
<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/ng-doc/ng-doc"> <img src="https://ng-doc.com/assets/images/ng-doc.svg?raw=true" alt="Logo" height="150px"> </a>
13 lines (12 loc) • 453 B
TypeScript
import { NgDocBaseEntity } from './base-entity';
export interface NgDocCategory extends NgDocBaseEntity {
/** The parent category */
category?: NgDocCategory;
/** Render the page only for specific build tags */
onlyForTags?: string[];
/** Determines whether the category is expandable */
expandable?: boolean;
/** Determines whether the category should be expanded by default */
expanded?: boolean;
route?: string;
}