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

7 lines
223 B
Plaintext
Raw Normal View History

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