All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
401 B
TypeScript
7 lines
401 B
TypeScript
declare function findNearestPackageData(basedir: string): {
|
|
type?: "module" | "commonjs";
|
|
};
|
|
declare function getCachedData<T>(cache: Map<string, T>, basedir: string, originalBasedir: string): NonNullable<T> | undefined;
|
|
declare function setCacheData<T>(cache: Map<string, T>, data: T, basedir: string, originalBasedir: string): void;
|
|
|
|
export { findNearestPackageData, getCachedData, setCacheData };
|