angular-bootstrap-md
Version:
<a href="http://mdbootstrap.com/docs/angular/getting-started/download/"><img src="https://mdbootstrap.com/img/Marketing/general/logo/medium/mdb-angular2.png"></a> # Angular Bootstrap with Material Design
24 lines (23 loc) • 834 B
TypeScript
import { OnInit, EventEmitter, QueryList, ChangeDetectorRef } from '@angular/core';
import { FixedButtonCaptionDirective } from '../buttons/fixed-caption.directive';
export declare class CollapseComponent implements OnInit {
private _cdRef;
captions: QueryList<FixedButtonCaptionDirective>;
isCollapsed: boolean;
showBsCollapse: EventEmitter<any>;
shownBsCollapse: EventEmitter<any>;
hideBsCollapse: EventEmitter<any>;
hiddenBsCollapse: EventEmitter<any>;
collapsed: EventEmitter<any>;
expanded: EventEmitter<any>;
constructor(_cdRef: ChangeDetectorRef);
expandAnimationState: string;
overflow: string;
onExpandBodyDone(event: any): void;
showCaptions(): void;
toggle(): void;
show(): void;
hide(): void;
initializeCollapseState(): void;
ngOnInit(): void;
}