NET-Web-API-w-Angular/my-app/node_modules/cli-width/index.d.ts

14 lines
267 B
TypeScript
Raw Normal View History

2024-02-09 00:38:41 +00:00
// Type definitions for cli-width 4.0
/// <reference types="node" />
import { Stream } from 'stream';
import tty = require('tty');
declare function cliWidth(options?: {
defaultWidth?: number;
output?: Stream;
tty?: typeof tty;
}): number;
export = cliWidth;