UNPKG

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

12 lines (9 loc) 338 B
import { Highlightable } from '@angular/cdk/a11y'; import { ElementRef } from '@angular/core'; interface NgDocListItem extends Highlightable { } declare abstract class NgDocListItem implements Highlightable { abstract elementRef: ElementRef<HTMLElement> | HTMLElement; abstract selectByUser(): void; } export { NgDocListItem };