Files
memecoin-botV2/.pnpm-store/v10/files/b7/e72d398bbd9fa46399218fd6bd4f951e4b1cab2a498c6bc75644101efa85f49a2cbd7471ad3b1d21eacc943ecceabe480cbd31f9ad390feb22378b3b8521d4

20 lines
808 B
Plaintext

"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.FlatESLint = void 0;
/* eslint-disable @typescript-eslint/no-namespace */
const eslint_1 = require("eslint");
const use_at_your_own_risk_1 = __importDefault(require("eslint/use-at-your-own-risk"));
/**
* The ESLint class is the primary class to use in Node.js applications.
* This class depends on the Node.js fs module and the file system, so you cannot use it in browsers.
*
* If you want to lint code on browsers, use the Linter class instead.
*/
class FlatESLint extends (use_at_your_own_risk_1.default.FlatESLint ??
eslint_1.ESLint) {
}
exports.FlatESLint = FlatESLint;