mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-08 01:04:39 +08:00
14 lines
273 B
JavaScript
14 lines
273 B
JavaScript
import Reflux from 'reflux';
|
|
|
|
const SearchActions = Reflux.createActions([
|
|
'querySubmitted',
|
|
'queryChanged',
|
|
'searchBlurred',
|
|
'searchCompleted',
|
|
]);
|
|
|
|
for (const key of Object.keys(SearchActions)) {
|
|
SearchActions[key].sync = true;
|
|
}
|
|
|
|
export default SearchActions;
|