UNPKG

@kadena/kadena-cli

Version:

Kadena CLI tool to interact with the Kadena blockchain (manage keys, transactions, etc.)

23 lines 958 B
import { input, select } from '../utils/prompts.js'; export const typescriptClean = async () => await select({ message: 'Would you like to remove pact generated types from your project?', choices: [ { value: false, name: 'No' }, { value: true, name: 'Yes' }, ], }); export const typescriptCapsInterface = async () => await input({ default: '', message: 'Enter a custom name for the interface of the capabilities:', }); export const typescriptFile = async () => await input({ message: 'Enter zero or more local Pact contract files (comma separated):', }); export const typescriptContract = async () => await input({ message: 'Enter zero or more contracts that exist on the blockchain (comma separated):', }); export const typescriptNamespace = async () => await input({ default: '', message: 'Enter the namespace of the contract if its not clear in the contract:', }); //# sourceMappingURL=typescript.js.map