@ng-doc/app
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>
21 lines (20 loc) • 1.12 kB
TypeScript
import { Location } from '@angular/common';
import { ChangeDetectorRef } from '@angular/core';
import { NgDocNavigation } from '@ng-doc/app/interfaces';
import { NgDocContent } from '@ng-doc/ui-kit';
import * as i0 from "@angular/core";
export declare class NgDocSidebarCategoryComponent {
category: NgDocNavigation;
isRoot: boolean;
content: NgDocContent;
expandable: boolean;
expanded: boolean;
protected readonly location: Location;
protected readonly changeDetectorRef: ChangeDetectorRef;
constructor();
toggle(): void;
expand(): void;
collapse(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NgDocSidebarCategoryComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NgDocSidebarCategoryComponent, "ng-doc-sidebar-category", never, { "category": { "alias": "category"; "required": true; }; "isRoot": { "alias": "isRoot"; "required": false; }; "content": { "alias": "content"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; }, {}, never, ["*"], true, never>;
}