import { PackageFile } from './PackageFile';
/** Describes package data plus it's filepath */
export interface PackageInfo {
    name?: string;
    pkg: PackageFile;
    pkgFile: string;
    filepath: string;
}
