This is absolutely a noob question as I am very new to kubejs, and javascript in general.
I'm trying to create a recipe for Create C&A's blaze burner straw by cutting bamboo with a mechanical saw, but I get the error "Failed to create recipe for type "create:cutting": Constructor for create:cutting with 2 arguments not found!"
Here's my current script.js file for the recipe:
// Listen for the "recipes" server event.
ServerEvents.recipes(event => {
event.recipes.create.cutting('createaddition:straw', 'minecraft:bamboo')
})