Expanding Types for Array.prototype.includes
function execute(action: number) {
if(includes(actions, action)) {
// ^
// Argument of type 'readonly ["CREATE", "READ", "UPDATE", "DELETE"]'
// is not assignable to parameter of type 'readonly number[]'.
}
}