/** * Configuration types for the Babel parser * @module @domscribe/transform/parsers/babel/types */ import { ParserPlugin } from '@babel/parser'; /** * Options for BabelParser initialization */ export interface BabelParserOptions { typescript?: boolean; jsx?: boolean; plugins?: ParserPlugin[]; } //# sourceMappingURL=types.d.ts.map