index.d.ts 267 B

12345678910111213
  1. // Type definitions for cli-width 4.0
  2. /// <reference types="node" />
  3. import { Stream } from 'stream';
  4. import tty = require('tty');
  5. declare function cliWidth(options?: {
  6. defaultWidth?: number;
  7. output?: Stream;
  8. tty?: typeof tty;
  9. }): number;
  10. export = cliWidth;