@ng-doc/builder
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>
37 lines (34 loc) • 717 B
JavaScript
// libs/core/constants/angular-entities.ts
var NgDocAngularEntities = [
"Component",
"Directive",
"Pipe",
"Injectable",
"NgModule"
];
// libs/core/constants/declarations.ts
var NgDocDeclarations = [
"Class",
"Interface",
"Enum",
"Function",
"TypeAlias",
"Variable"
];
// apps/ng-doc/docs/develop/apps/ng-doc/docs/develop/ng-doc.page.ts
var DevelopPage = {
title: "Develop",
mdFile: "./index.md.nunj",
onlyForTags: ["development"],
data: {
modifiers: ["abstract", "static", "async", "readonly"],
entities: {
typescript: NgDocDeclarations,
angular: NgDocAngularEntities
}
}
};
var ng_doc_page_default = DevelopPage;
export {
ng_doc_page_default as default
};