out-of-your-element/passthrough.js

15 lines
373 B
JavaScript
Raw Normal View History

2023-04-25 20:06:08 +00:00
// @ts-check
2023-03-05 16:05:35 +00:00
/**
* @typedef {Object} Passthrough
* @property {import("repl").REPLServer} repl
* @property {typeof import("./config")} config
2023-04-25 20:06:08 +00:00
* @property {import("./d2m/discord-client")} discord
2023-03-05 16:05:35 +00:00
* @property {import("heatsync")} sync
2023-05-04 20:25:00 +00:00
* @property {import("better-sqlite3/lib/database")} db
2023-03-05 16:05:35 +00:00
*/
/** @type {Passthrough} */
2023-04-25 20:06:08 +00:00
// @ts-ignore
2023-03-05 16:05:35 +00:00
const pt = {}
module.exports = pt