/** * An example typed API that generates a hello world message * Read more about typing at: https://github.com/acode/functionscript * @param {string} username The username you want to lookup against our dataset * @param {string} type What index we should */ module.exports = async (username, type = "content_creator") => { return "todo"; };