Creates a filter function that checks if a module's exports contain the specified properties.
The type of the property keys to check.
The list of property keys to check for in the module's exports.
A function for filtering modules based on the presence of the specified properties.
const MessageActionCreators = getModule(filters.byProps("sendMessage", "editMessage")); Copy
const MessageActionCreators = getModule(filters.byProps("sendMessage", "editMessage"));
Creates a filter function that checks if a module's exports contain the specified properties.