UNPKG

expo-modules-autolinking

Version:
11 lines (10 loc) 425 B
import { type ResolutionResult } from './types'; declare module 'node:module' { function _nodeModulePaths(base: string): readonly string[]; } interface ResolutionOptions { shouldIncludeDependency?(name: string): boolean; limitDepth?: number; } export declare function scanDependenciesRecursively(rawPath: string, { shouldIncludeDependency, limitDepth }?: ResolutionOptions): Promise<ResolutionResult>; export {};