2025-09-05 14:59:21 +08:00

9 lines
241 B
TypeScript

export interface ESPree {
latestEcmaVersion?: number;
version: string;
}
export declare function getEspree(): ESPree;
type NewestKind = "cwd" | "linter" | "self";
export declare function getNewestEspreeKind(): NewestKind;
export {};