mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
14 lines
272 B
JavaScript
14 lines
272 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
|