UNPKG

@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>

15 lines (14 loc) 503 B
import { NgDocApiScope } from './api-scope'; import { NgDocBaseEntity } from './base-entity'; import { NgDocCategory } from './category'; export interface NgDocApi extends NgDocBaseEntity { /** The API scopes, you can use it to define scopes for files that should be included to the API */ scopes: NgDocApiScope[]; /** The page category */ category?: NgDocCategory; /** * Custom keyword that uses to create links to this page */ keyword?: string; route?: string; }