blob: b44e2411e7445e6a0d463d1bf4c7546173d5abda (
plain)
1
2
3
4
5
6
7
8
9
|
const lib = require('./desktop/core/lib')
for(const type in lib){
console.log(`\n### ${type} functions\n`)
for(const id in lib[type]){
const fn = new lib[type][id]()
console.log(`- \`${id.toUpperCase()}\`, **${fn.name}**: ${fn.info}`)
}
}
|