botbook/node_modules/is-unicode-supported/index.d.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

14 lines
243 B
TypeScript

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