UNPKG

367 BTypeScriptView Raw
1import BaseStore from '../../base/store';
2import { SearchActionsType } from './actions';
3export declare type SearchStoreState = {
4 keyword: string | null;
5};
6export declare class SearchStore extends BaseStore<SearchStoreState, SearchActionsType> {
7 getInitialState(): SearchStoreState;
8 handle(type: any, payload: any): void;
9 private search;
10}