tis-cli前端项目快速搭建命令行工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
612 B

4 years ago
  1. export interface Options {
  2. /**
  3. The stream to check.
  4. @default process.stdout
  5. */
  6. readonly stream?: NodeJS.WritableStream;
  7. }
  8. /**
  9. Check if stdout or stderr is [interactive](https://unix.stackexchange.com/a/43389/7678).
  10. It checks that the stream is [TTY](https://jameshfisher.com/2017/12/09/what-is-a-tty/), not a dumb terminal, and not running in a CI.
  11. This can be useful to decide whether to present interactive UI or animations in the terminal.
  12. @example
  13. ```
  14. import isInteractive from 'is-interactive';
  15. isInteractive();
  16. //=> true
  17. ```
  18. */
  19. export default function isInteractive(options?: Options): boolean;