/** * @license * Copyright 厦门乾元盛世科技有限公司 All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file. */ import { EventEmitter, ElementRef, Renderer } from '@angular/core'; import { OnInit } from '@angular/core'; import { InputBox } from './input'; import 'rxjs/add/operator/debounceTime'; import 'rxjs/add/operator/distinctUntilChanged'; export declare class Search extends InputBox implements OnInit { private renderer2; private elementRef2; private compositionMode2; /** 自动查询延迟时间(ms),默认300毫秒 */ triggerDelay: number; /** * @output {event} 回车执行查询 */ search: EventEmitter; private searchTerms; constructor(renderer2: Renderer, elementRef2: ElementRef, compositionMode2: boolean); ngOnInit(): void; readonly inputClass: string; readonly searchIconClass: string; /** 样式 */ readonly classes: string; push(term: string): void; onSearch(): void; }