UNPKG

@typescript-eslint/typescript-estree

Version:

A parser that converts TypeScript source code into an ESTree compatible form

10 lines 537 B
import * 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 */ declare function createProjectProgram(parseSettings: ParseSettings, programsForProjects: readonly ts.Program[]): ASTAndDefiniteProgram | undefined; export { createProjectProgram }; //# sourceMappingURL=createProjectProgram.d.ts.map