/** * **huniq** - Filter out duplicates on the command line. Replacement for `sort | uniq` optimized for speed (10x faster) when sorting is not needed. * * @domain `crates.io/huniq` * @programs `huniq` * @version `2022.12.10` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/huniq` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiohuniq * console.log(pkg.name) // "huniq" * console.log(pkg.description) // "Filter out duplicates on the command line. Repl..." * console.log(pkg.programs) // ["huniq"] * console.log(pkg.versions[0]) // "2022.12.10" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/huniq.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiohuniqPackage: { /** * The display name of this package. */ name: 'huniq'; /** * The canonical domain name for this package. */ domain: 'crates.io/huniq'; /** * Brief description of what this package does. */ description: 'Filter out duplicates on the command line. Replacement for `sort | uniq` optimized for speed (10x faster) when sorting is not needed.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/huniq/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/koraa/huniq'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/huniq'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/huniq -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/huniq'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['huniq']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2022.12.10']; aliases: readonly [] }; export type CratesiohuniqPackage = typeof cratesiohuniqPackage