Create channels with an options object instead of separate parameters?

Create channels with an options object instead of separate parameters ??

From the D.JS docs:

guild.channels.create('new-voice', {
  type: 'voice',
  permissionOverwrites: [
     {
       id: message.author.id,
       deny: ['VIEW_CHANNEL'],
    },
  ],
})

just put what you want in the {} object which is the second parameter