@withtypes/prompts
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

@withtypes/prompts

Prompts with types.

Merged prompts and @types/prompts , install this package to get both, no other features.

Why?

I got tired of having to install an additional @types/** package every time in my TypeScript project to support type inference for these utilities.

So I merged them, but in fact, after installing this package, the original package will still be installed implicitly, and all functions are provided by the original package.

Installation

Install the package from npm (or yarn, or pnpm).

# Just install this package
npm i @withtypes/prompts

This replaces the original problem of needing to install twice:

# No need to install this now
npm i prompts
npm i -D @types/prompts

Usage

This package does not have its own function implementation, Just replace the package name in the import statement.

-import prompts from 'prompts'
+import prompts from '@withtypes/prompts'

So it is exactly the same APIs as the original package in use.

import prompts from '@withtypes/prompts'

;(async () => {
  const res = await prompts({
    type: 'text',
    name: 'slogan',
    message: 'Enter you slogan:',
    initial: 'Hello World',
    onState: (state) => state.value.trim(),
  })

  console.log(res.slogan)
  // Hello World
})()

Documentation

See: Documentation of Prompts

License

MIT License © 2022 chengpeiquan

Dependents (3)

Package Sidebar

Install

npm i @withtypes/prompts

Weekly Downloads

8

Version

0.1.1

License

MIT

Unpacked Size

9.28 kB

Total Files

7

Last publish

Collaborators

  • chengpeiquan