Files
memecoin-botV2/.pnpm-store/v10/files/a5/97537ae518b1a36cd0d459eb999d3a521b9b031faf319f1ba9119e9aebfd4e26540aa5848c9fc0eb90b26b2ddfd7bba4eca6625a7293ffd939c9ca0f32920a

9 lines
454 B
Plaintext

import type * as ts from 'typescript';
import type { ParseSettings } from '../parseSettings';
import type { ASTAndDefiniteProgram } from './shared';
/**
* @param parseSettings Internal settings for parsing the file
* @returns If found, the source file corresponding to the code and the containing program
*/
export declare function createProjectProgram(parseSettings: ParseSettings, programsForProjects: readonly ts.Program[]): ASTAndDefiniteProgram;