10 lines
246 B
Plaintext
10 lines
246 B
Plaintext
import { BaseActions } from '../../base/actions';
|
|
export interface SearchActionsType {
|
|
SEARCH_KEYWORD: {
|
|
keyword: string;
|
|
};
|
|
}
|
|
export declare class SearchActions extends BaseActions<SearchActionsType> {
|
|
search(keyword: string): void;
|
|
}
|