UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

5 lines (4 loc) 423 B
import type { ExtractConfig, PackageFile, PackageFileContent } from '../../types'; import type { NpmManagerData } from '../types'; export declare function extractPackageFile(content: string, packageFile: string, config: ExtractConfig): Promise<PackageFileContent<NpmManagerData> | null>; export declare function extractAllPackageFiles(config: ExtractConfig, packageFiles: string[]): Promise<PackageFile<NpmManagerData>[]>;