site/node_modules/@clack/prompts/node_modules/is-unicode-supported/index.d.ts
2024-10-14 08:09:33 +02:00

12 lines
214 B
TypeScript

/**
Detect whether the terminal supports Unicode.
@example
```
import isUnicodeSupported from 'is-unicode-supported';
isUnicodeSupported();
//=> true
```
*/
export default function isUnicodeSupported(): boolean;