/** * **telnet** - pkgx package * * @domain `apple.com/remote_cmds` * @programs `telnet` * @version `306.0.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install apple.com/remote_cmds` * @homepage https://opensource.apple.com/releases * @buildDependencies `curl.se` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.applecomremote_cmds * console.log(pkg.name) // "telnet" * console.log(pkg.programs) // ["telnet"] * console.log(pkg.versions[0]) // "306.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/apple-com/remote_cmds.md * @see https://ts-pkgx.netlify.app/usage */ export declare const applecomremote_cmdsPackage: { /** * The display name of this package. */ name: 'telnet'; /** * The canonical domain name for this package. */ domain: 'apple.com/remote_cmds'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apple.com/remote_cmds/package.yml'; homepageUrl: 'https://opensource.apple.com/releases'; githubUrl: 'https://github.com/apple-oss-distributions/remote_cmds'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install apple.com/remote_cmds'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +apple.com/remote_cmds -- $SHELL -i'; launchpadInstallCommand: 'launchpad install apple.com/remote_cmds'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['telnet']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['curl.se']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['306.0.0', '303.141.1', '303.0.2', '302.0.0', '294.0.0']; aliases: readonly [] }; export type Applecomremote_cmdsPackage = typeof applecomremote_cmdsPackage