ng-zorro-antd-yj
Version:
An enterprise-class UI components based on Ant Design and Angular
14 lines (13 loc) • 433 B
TypeScript
import { ChangeDetectorRef, EventEmitter, OnChanges } from '@angular/core';
export declare class NzTransferSearchComponent implements OnChanges {
private cdr;
placeholder: string;
value: string;
disabled: boolean;
readonly valueChanged: EventEmitter<string>;
readonly valueClear: EventEmitter<void>;
constructor(cdr: ChangeDetectorRef);
_handle(): void;
_clear(): void;
ngOnChanges(): void;
}