UNPKG

eslint-plugin-import-x

Version:
13 lines (12 loc) 237 B
import type { PackageJson } from 'type-fest'; export declare function readPkgUp(opts?: { cwd?: string; }): { pkg?: undefined; path?: undefined; } | { pkg: PackageJson & { name: string; }; path: string; };