Files
memecoin-botV2/.pnpm-store/v10/files/09/4e7024f515196c3309e54e2b68abc87bd39cb5e923e01da577c993fb44f8709397a957e3f739c2b8e37d5863abdeab06b16dd351c96ea897d2e06ca47d3a8b

14 lines
595 B
Plaintext

import * as ts from 'typescript';
import type { ParseSettings } from '../parseSettings';
/**
* Clear all of the parser caches.
* This should only be used in testing to ensure the parser is clean between tests.
*/
export declare function clearWatchCaches(): void;
/**
* Calculate project environments using options provided by consumer and paths from config
* @param parseSettings Internal settings for parsing the file
* @returns The programs corresponding to the supplied tsconfig paths
*/
export declare function getWatchProgramsForProjects(parseSettings: ParseSettings): ts.Program[];