Files
memecoin-botV2/.pnpm-store/v10/files/be/f2039f21aef209b203b742ae200dd5b5b130d02bf57f072ae0b44d2ebcc11bfc472cfd1309abdb643a54a7a6bcd7c3d22f2c92e2ab880ee940c6fe5d43b20b

15 lines
802 B
Plaintext

import type { TSESTreeOptions } from '../parser-options';
/**
* ESLint (and therefore typescript-eslint) is used in both "single run"/one-time contexts,
* such as an ESLint CLI invocation, and long-running sessions (such as continuous feedback
* on a file in an IDE).
*
* When typescript-eslint handles TypeScript Program management behind the scenes, this distinction
* is important because there is significant overhead to managing the so called Watch Programs
* needed for the long-running use-case. We therefore use the following logic to figure out which
* of these contexts applies to the current execution.
*
* @returns Whether this is part of a single run, rather than a long-running process.
*/
export declare function inferSingleRun(options: TSESTreeOptions | undefined): boolean;