astro-ghostcms/.pnpm-store/v3/files/3d/61020d5690317ad5177d3588fff...

15 lines
526 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
export interface AstroInstall {
path: string;
version: {
full: string;
major: number;
minor: number;
patch: number;
};
}
export declare function getLanguageServerTypesDir(ts: typeof import('typescript')): string;
export declare function getAstroInstall(basePaths: string[], checkForAstro?: {
nearestPackageJson: string | undefined;
readDirectory: typeof import('typescript/lib/tsserverlibrary.js').sys.readDirectory;
}): AstroInstall | 'not-an-astro-project' | 'not-found';