@ng-doc/ui-kit
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>
17 lines (16 loc) • 808 B
TypeScript
import { ElementRef, NgZone } from '@angular/core';
import { NgDocListHost } from '@ng-doc/ui-kit/classes/list-host';
import { NgDocListItem } from '@ng-doc/ui-kit/classes/list-item';
import * as i0 from "@angular/core";
export declare class NgDocListComponent {
private elementRef;
private ngZone;
private listHost?;
private keyManager;
private readonly items;
constructor(elementRef: ElementRef<HTMLElement>, ngZone: NgZone, listHost?: NgDocListHost | undefined);
registerItem(item: NgDocListItem): void;
unregisterItem(item: NgDocListItem): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NgDocListComponent, [null, null, { optional: true; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<NgDocListComponent, "ng-doc-list", never, {}, {}, never, ["*"], true, never>;
}