@dangl/angular-ava
Version:
[](https://www.npmjs.com/package/@dangl/angular-ava)
21 lines (20 loc) • 1.18 kB
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { IElementDto } from '../../model';
import { ConfigurationTreeService } from '../../services/configuration-tree.service';
import { SelectElementService } from '../../services/select-element.service';
import * as i0 from "@angular/core";
export declare class ListStructureComponent implements OnDestroy, OnInit {
selectElementService: SelectElementService;
private configurationTreeService;
filteredElementList: import("@angular/core").InputSignal<IElementDto[]>;
selectedElement: IElementDto | null;
private $destroy;
readonly selectedColor$: Observable<string>;
isSelectionMode: boolean;
constructor(selectElementService: SelectElementService, configurationTreeService: ConfigurationTreeService);
ngOnInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ListStructureComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ListStructureComponent, "ava-list-structure", never, { "filteredElementList": { "alias": "filteredElementList"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
}