Function get_default_cmds

returns the default commands available.

It may looks kinda silly, but this is for when you want to override the main type for Meinu.

Like if you've extended Meinu, you can do the following to get the correct type:

const { echo, eval, ping } = get_default_cmds<MyMeinu>();

// the following assumes you setup a static start
// method on your extended Meinu class
const bot = await MyMeinu.start({
cmds: [ echo, eval, ping ],
});