mirror of
https://github.com/20kaushik02/express-sequelize-backend-template.git
synced 2025-12-06 07:24:07 +00:00
17 lines
480 B
JavaScript
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 = {}; |