import jsdocJson from '../../../doc.json'; const visibleFunctions = jsdocJson.docs .filter(({ name, description }) => name && !name.startsWith('_') && !!description) .sort((a, b) => /* a.meta.filename.localeCompare(b.meta.filename) + */ a.name.localeCompare(b.name)); export function Reference() { return (
{visibleFunctions.map((entry, i) => ( {entry.name} {/* {entry.meta.filename} */} ))}

API Reference

This is the long list functions you can use! Remember that you don't need to remember all of those and that you can already make music with a small set of functions!

{visibleFunctions.map((entry, i) => (

{entry.name}

{/* {entry.meta.filename} */}

{entry.examples?.map((example, j) => (
{example}
))}
))}
); }