"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Base = void 0; class Base { /** * the client instance */ client; constructor(client) { this.client = client; } } exports.Base = Base;