ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.58 kB
TypeScript
/**
* **tf-import-gen** - Tool to generate terraform import statements to simplify state migrations from one terraform code base to another
*
* @domain `github.com/kishaningithub/tf-import-gen`
* @programs `tf-import-gen`
* @version `0.17.0` (21 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install tf-import-gen`
* @name `tf-import-gen`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.tfimportgen
* // Or access via domain
* const samePkg = pantry.githubcomkishaningithubtfimportgen
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "tf-import-gen"
* console.log(pkg.description) // "Tool to generate terraform import statements to..."
* console.log(pkg.programs) // ["tf-import-gen"]
* console.log(pkg.versions[0]) // "0.17.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/kishaningithub/tf-import-gen.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const tfimportgenPackage: {
/**
* The display name of this package.
*/
name: 'tf-import-gen';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/kishaningithub/tf-import-gen';
/**
* Brief description of what this package does.
*/
description: 'Tool to generate terraform import statements to simplify state migrations from one terraform code base to another';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/kishaningithub/tf-import-gen/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install tf-import-gen';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['tf-import-gen'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.17.0', '0.16.0', '0.15.0', '0.14.0', '0.13.1', '0.12.0', '0.11.1', '0.11.0', '0.10.2', '0.10.1', '0.10.0', '0.9.0', '0.8.0', '0.7.4', '0.7.3', '0.7.2', '0.7.1', '0.7.0', '0.6.0', '0.5.0', '0.4.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type TfimportgenPackage = typeof tfimportgenPackage