UNPKG

renovate

Version:

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

5 lines (4 loc) 345 B
import type { ExtractConfig, PackageFileContent } from '../types'; import { PyProject } from './schema'; export declare function parsePyProject(content: string, packageFile?: string): PyProject | null; export declare function extractPackageFile(content: string, packageFile: string, _config?: ExtractConfig): Promise<PackageFileContent | null>;