版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

26 řádky
612 B

  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;