summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts')
-rw-r--r--deps/npm/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/deps/npm/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts b/deps/npm/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts
deleted file mode 100644
index 44e954d0c7..0000000000
--- a/deps/npm/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-/**
-Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
-
-@example
-```
-import stripAnsi from 'strip-ansi';
-
-stripAnsi('\u001B[4mUnicorn\u001B[0m');
-//=> 'Unicorn'
-
-stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
-//=> 'Click'
-```
-*/
-export default function stripAnsi(string: string): string;