/** * **expected** - C++11/14/17 std::expected with functional-style extensions * * @domain `github.com/TartanLlama/expected` * @version `1.3.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/TartanLlama/expected` * @homepage https://tl.tartanllama.xyz * @buildDependencies `cmake.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomtartanllamaexpected * console.log(pkg.name) // "expected" * console.log(pkg.description) // "C++11/14/17 std::expected with functional-style..." * console.log(pkg.versions[0]) // "1.3.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/TartanLlama/expected.md * @see https://ts-pkgx.netlify.app/usage */ export declare const expectedPackage: { /** * The display name of this package. */ name: 'expected'; /** * The canonical domain name for this package. */ domain: 'github.com/TartanLlama/expected'; /** * Brief description of what this package does. */ description: 'C++11/14/17 std::expected with functional-style extensions '; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/TartanLlama/expected/package.yml'; homepageUrl: 'https://tl.tartanllama.xyz'; githubUrl: 'https://github.com/TartanLlama/expected'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/TartanLlama/expected'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/TartanLlama/expected -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/TartanLlama/expected'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.1', '1.3.0', '1.2.0', '1.1.0']; aliases: readonly [] }; export type ExpectedPackage = typeof expectedPackage