7 lines
292 B
TypeScript
7 lines
292 B
TypeScript
import { type ResolutionResult } from './types';
|
|
interface ResolutionOptions {
|
|
shouldIncludeDependency?(name: string): boolean;
|
|
}
|
|
export declare function scanDependenciesInSearchPath(rawPath: string, { shouldIncludeDependency }?: ResolutionOptions): Promise<ResolutionResult>;
|
|
export {};
|