astro-ghostcms/.pnpm-store/v3/files/41/5c7f1e13c3a9b80ffbe7cc11fe5...

7 lines
223 B
Plaintext

import type { ParserOptions, TSESTree } from "@typescript-eslint/types";
type Espree = {
parse(code: string, options?: ParserOptions | null): TSESTree.Program;
};
export declare function getEspree(): Espree;
export {};