@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>
9 lines (8 loc) • 324 B
TypeScript
import { Highlightable } from '@angular/cdk/a11y';
import { ElementRef } from '@angular/core';
export interface NgDocListItem extends Highlightable {
}
export declare abstract class NgDocListItem implements Highlightable {
abstract elementRef: ElementRef<HTMLElement> | HTMLElement;
abstract selectByUser(): void;
}