@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>
34 lines (32 loc) • 813 B
JavaScript
// apps/ng-doc/docs/writing-content/ng-doc.category.ts
var WritingContentCategory = {
title: "Writing content",
order: 2
};
var ng_doc_category_default = WritingContentCategory;
// apps/ng-doc/docs/writing-content/playground/apps/ng-doc/docs/writing-content/playground/ng-doc.page.ts
var PlaygroundPage = {
title: `Playground`,
mdFile: ["./index.md", "./type-controls.md"],
category: ng_doc_category_default,
order: 8,
playgrounds: {
TagPlayground: {},
TagIconPlayground: {},
TagDataPlayground: {
data: {
array: [1, 2, 3]
}
},
RotatorPlayground: {},
DatePipePlayground: {},
ButtonPlayground: {
data: { label: "Button" }
},
FloatingCircle: {}
}
};
var ng_doc_page_default = PlaygroundPage;
export {
ng_doc_page_default as default
};