Files
memecoin-botV2/.pnpm-store/v10/files/37/853bd7f72f7e2c0785b7f678e56850b4b6805ba4be0927a5c5fbcfe124013704260c4680d63403c21d6347532c4bf2a2cb49adee199babf44291347bb992dd

19 lines
682 B
Plaintext

import type { CanonicalPath } from '../create-program/shared';
import type { TSESTreeOptions } from '../parser-options';
export declare function clearGlobCache(): void;
/**
* Normalizes, sanitizes, resolves and filters the provided project paths
*/
export declare function resolveProjectList(options: Readonly<{
cacheLifetime?: TSESTreeOptions['cacheLifetime'];
project: string[] | null;
projectFolderIgnoreList: TSESTreeOptions['projectFolderIgnoreList'];
singleRun: boolean;
tsconfigRootDir: string;
}>): ReadonlyMap<CanonicalPath, string>;
/**
* Exported for testing purposes only
* @internal
*/
export declare function clearGlobResolutionCache(): void;