UNPKG

@bitloops/bl-transpiler

Version:
12 lines 1.09 kB
import { isIntermediateASTValidationErrors } from './ast/core/guards/index.js'; import type { ValidationErrors } from './ast/core/types.js'; import { isParserErrors } from './parser/core/guards/index.js'; import type { TParserCoreInputData, TParserSetupInputData } from './parser/core/types.js'; import { type ParserSyntacticErrors, type TParserInputData } from './parser/index.js'; import type { TSymbolTableSemantics } from './semantic-analysis/type-inference/types.js'; import { getTargetFileDestination } from './target/typescript-nest/helpers/getTargetFileDestination.js'; import Transpiler from './Transpiler.js'; import type { TranspilerErrors, TTranspileOptions, TTranspileOutput } from './transpilerTypes.js'; declare const transpiler: Transpiler; export { transpiler, TParserInputData, TParserCoreInputData, TParserSetupInputData, TTranspileOptions, Transpiler, TTranspileOutput, getTargetFileDestination, TranspilerErrors, ParserSyntacticErrors, ValidationErrors, isParserErrors, isIntermediateASTValidationErrors, TSymbolTableSemantics, }; //# sourceMappingURL=index.d.ts.map