@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>
14 lines (13 loc) • 862 B
TypeScript
import { ElementRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import { NgDocSelectionHostDirective } from './selection-host.directive';
import * as i0 from "@angular/core";
export declare class NgDocSelectionOriginDirective implements OnChanges, OnDestroy {
readonly elementRef: ElementRef<HTMLElement>;
private readonly selectionHost;
selected: boolean;
constructor(elementRef: ElementRef<HTMLElement>, selectionHost: NgDocSelectionHostDirective);
ngOnChanges({ selected }: SimpleChanges): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NgDocSelectionOriginDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<NgDocSelectionOriginDirective, "[ngDocSelectionOrigin]", never, { "selected": { "alias": "ngDocSelectionOrigin"; "required": false; }; }, {}, never, never, true, never>;
}