persona-community-5/.pnpm-store/v3/files/c8/ed264e71a588b074e9c1719ae665c597c4583a17f16d53fcf9a8321d63b374de20b391f622fc949d745b7913ad90a4a681770bd839a8b412016e3af8d5d2eb
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

15 lines
696 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.
*/
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
*/
declare function getWatchProgramsForProjects(parseSettings: ParseSettings): ts.Program[];
export { clearWatchCaches, getWatchProgramsForProjects };
//# sourceMappingURL=getWatchProgramsForProjects.d.ts.map