Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { KeyboardEvent } from 'react';
declare class SearchState {
    value: string;
    isActive: boolean;
    isClosing: boolean;
    isVisible: boolean;
    show(event?: any): void;
    hide(event?: any): void;
    onFocusToggle(event?: any): void;
    setValue(value: string): void;
    onKeyDown(event: KeyboardEvent): void;
}
declare function toSearchState(): SearchState;
export { SearchState, toSearchState };