import { Client } from "./client.js"; class Tourmanent { /** * @param {Client} client */ constructor(client) { /** * @type {Client} */ this.client = client } } export { Tourmanent }