Files
Fluxup_PAP/node_modules/expo-modules-autolinking/build/dependencies/resolution.d.ts
2026-03-10 16:18:05 +00:00

11 lines
425 B
TypeScript

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 {};