astro-ghostcms/.pnpm-store/v3/files/90/1c08bf41017c0296cf88ffa7a18...

8 lines
286 B
Plaintext

import { type Logger } from '../core/logger/core.js';
type GetPackageOptions = {
skipAsk?: boolean;
cwd?: string;
};
export declare function getPackage<T>(packageName: string, logger: Logger, options: GetPackageOptions, otherDeps?: string[]): Promise<T | undefined>;
export {};