1/** 2 * Likes for a npm package on npmx 3 */ 4export type PackageLikes = { 5 // The total likes found for the package 6 totalLikes: number 7 // If the logged in user has liked the package, false if not logged in 8 userHasLiked: boolean 9}