Files
ng2-file-upload/build/node_modules/ng2-bootstrap/components/dropdown/dropdown-menu.d.ts
2016-02-02 18:42:21 +02:00

10 lines
291 B
TypeScript

import { ElementRef, OnInit } from 'angular2/core';
import { Dropdown } from './dropdown';
export declare class DropdownMenu implements OnInit {
dropdown: Dropdown;
el: ElementRef;
templateUrl: string;
constructor(dropdown: Dropdown, el: ElementRef);
ngOnInit(): void;
}