/** * @module "ethpm/package" */ export declare namespace Meta { type Author = string; type License = string; type Description = string; type Keyword = string; interface PackageMetaLink { resource: string; uri: string; } interface PackageMeta { authors?: Array; license?: License; description?: Description; keywords?: Array; links?: Array; } }