2023-05-12 23:40:39 +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 = {};