angular2-expandable-list
Version:
Expandable lists made easy for Angular2+
23 lines (22 loc) • 674 B
TypeScript
import { AfterViewInit, OnChanges, SimpleChanges, EventEmitter } from '@angular/core';
export declare class ExpandableListComponent {
}
export declare class ExpandableListStyler {
}
export declare class ExpandableListDividerStyler {
}
export declare class ExpandableListItemComponent implements AfterViewInit, OnChanges {
marginTop: string;
isExpanded: boolean;
disabled: boolean;
onExpanded: EventEmitter<boolean>;
private elHeight;
private elementView;
private isDisabled;
private expanded;
ngAfterViewInit(): void;
constructor();
ngOnChanges(changes: SimpleChanges): void;
onClick(): void;
private updateMarginTop();
}