2022-11-07 17:36:33 +05:30

17 lines
480 B
JavaScript

// Type definitions to enable better auto-complete features.
/**
* @typedef {import("module")} Module
*
* @typedef {import("express").Request} Req
* @typedef {import("express").Response} Res
* @typedef {import("express").NextFunction} Next
*
* @typedef {import("sequelize") Sequelize}
* @typedef {import("sequelize").Model Model}
* @typedef {import("sequelize").QueryInterface QueryInterface}
*
* @typedef {import("winston").Logger} Logger
*/
exports.unused = {};