9 lines
241 B
TypeScript
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 {};
|