frontend/.pnpm-store/v3/files/93/b3ecdeabe3c47773e6b7d04b131382eaca816ad502a34e0cbb855b7214d5d63c5aa4179bb86f3cd0bb0acdb6a1b78ecbbf0c3875dd4b99f7ec09f67d6b5c59

15 lines
243 B
Plaintext

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