ng-semantic
Version:
Angular2 building blocks based on Semantic UI
15 lines (14 loc) • 484 B
TypeScript
import { EventEmitter, AfterViewInit } from "@angular/core";
import { FormControl } from "@angular/forms";
import "rxjs/add/operator/debounceTime";
import "rxjs/add/operator/distinctUntilChanged";
export declare class SemanticSearchComponent implements AfterViewInit {
class: string;
icon: boolean;
loading: boolean;
debounce: number;
placeholder: string;
onSearch: EventEmitter<string | number>;
searchControl: FormControl;
ngAfterViewInit(): void;
}