aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-unicode-supported/index.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/is-unicode-supported/index.d.ts')
-rw-r--r--node_modules/is-unicode-supported/index.d.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/node_modules/is-unicode-supported/index.d.ts b/node_modules/is-unicode-supported/index.d.ts
new file mode 100644
index 0000000..944a878
--- /dev/null
+++ b/node_modules/is-unicode-supported/index.d.ts
@@ -0,0 +1,12 @@
+/**
+Detect whether the terminal supports Unicode.
+
+@example
+```
+import isUnicodeSupported from 'is-unicode-supported';
+
+isUnicodeSupported();
+//=> true
+```
+*/
+export default function isUnicodeSupported(): boolean;