astro-ghostcms/.pnpm-store/v3/files/73/2ddd4a9d38b691447ecde6299ee...

15 lines
503 B
Plaintext

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').sys.readDirectory;
}): AstroInstall | 'not-an-astro-project' | 'not-found';