export interface PoetrySection { dependencies: Record; 'dev-dependencies': Record; extras: Record; source?: PoetrySource[]; } export interface PoetryFile { tool?: { poetry?: PoetrySection; }; } export interface PoetryDependency { path?: string; git?: string; version?: string; } export interface PoetrySource { name?: string; url?: string; }