API JSDoc fixes.

This commit is contained in:
Jayden Seric 2021-02-10 00:46:15 +11:00
parent 283155b52e
commit 09581b9047

View File

@ -22,10 +22,10 @@ mkdirp.sync(UPLOAD_DIR);
/** /**
* Stores a GraphQL file upload. The file is stored in the filesystem and its * Stores a GraphQL file upload. The file is stored in the filesystem and its
* metadata is recorded in the DB. * metadata is recorded in the DB.
* @param {GraphQLUpload} upload GraphQL file upload. * @param {Promise<object>} upload GraphQL file upload.
* @returns {object} File metadata. * @returns {Promise<object>} File metadata.
*/ */
const storeUpload = async (upload) => { async function storeUpload(upload) {
const { createReadStream, filename, mimetype } = await upload; const { createReadStream, filename, mimetype } = await upload;
const stream = createReadStream(); const stream = createReadStream();
const id = shortid.generate(); const id = shortid.generate();
@ -61,7 +61,7 @@ const storeUpload = async (upload) => {
db.get('uploads').push(file).write(); db.get('uploads').push(file).write();
return file; return file;
}; }
const app = new Koa().use( const app = new Koa().use(
graphqlUploadKoa({ graphqlUploadKoa({