UNPKG

@intlify/eslint-plugin-vue-i18n

Version:
5 lines (4 loc) 268 B
import type { AST as VAST } from 'vue-eslint-parser'; export type ParseResult = Pick<VAST.ESLintExtendedProgram, 'ast' | 'visitorKeys'> | null; export type Parser = (filePath: string) => ParseResult; export declare function buildParserFromConfig(cwd: string): Parser;