mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
14 lines
275 B
JavaScript
14 lines
275 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;
|
|
}
|
|
|
|
module.exports = SearchActions;
|