ts-pkgx
Version:
A library & CLI for managing packages
53 lines • 1.65 kB
TypeScript
/**
* **bash-completion** - pkgx package
*
* @domain `debian.org/bash-completion`
* @version `2.11.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +debian.org/bash-completion -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.debianorgbashcompletion
* console.log(pkg.name) // "bash-completion"
* console.log(pkg.versions[0]) // "2.11.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/debian-org/bash-completion.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const debianorgbashcompletionPackage: {
/**
* The display name of this package.
*/
name: 'bash-completion';
/**
* The canonical domain name for this package.
*/
domain: 'debian.org/bash-completion';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/debian.org/bash-completion/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +debian.org/bash-completion -- $SHELL -i';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.11.0'];
aliases: readonly []
};
export type DebianorgbashcompletionPackage = typeof debianorgbashcompletionPackage