/** * **wait4x** - Wait4X allows you to wait for a port or a service to enter the requested state. * * @domain `wait4x.dev` * @programs `wait4x` * @version `3.6.0` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install wait4x.dev` * @homepage https://wait4x.dev * @buildDependencies `go.dev@~1.22` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.wait4xdev * console.log(pkg.name) // "wait4x" * console.log(pkg.description) // "Wait4X allows you to wait for a port or a servi..." * console.log(pkg.programs) // ["wait4x"] * console.log(pkg.versions[0]) // "3.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/wait4x-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const wait4xdevPackage: { /** * The display name of this package. */ name: 'wait4x'; /** * The canonical domain name for this package. */ domain: 'wait4x.dev'; /** * Brief description of what this package does. */ description: 'Wait4X allows you to wait for a port or a service to enter the requested state.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/wait4x.dev/package.yml'; homepageUrl: 'https://wait4x.dev'; githubUrl: 'https://github.com/atkrad/wait4x'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install wait4x.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +wait4x.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install wait4x.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['wait4x']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.22']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.6.0', '3.5.1', '3.5.0', '3.4.0', '3.3.1', '3.3.0', '3.2.0', '3.1.0', '3.0.0', '2.14.3', '2.14.2']; aliases: readonly [] }; export type Wait4xdevPackage = typeof wait4xdevPackage