[READ-ONLY] a fast, modern browser for the npm registry
at main 9 lines 235 B view raw
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}