First upload version 0.0.1
This commit is contained in:
19
node_modules/slice-ansi/index.d.ts
generated
vendored
Normal file
19
node_modules/slice-ansi/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
Slice a string with [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code#Colors_and_Styles)
|
||||
|
||||
@param string - A string with ANSI escape codes. Like one styled by [`chalk`](https://github.com/chalk/chalk).
|
||||
@param startSlice - Zero-based index at which to start the slice.
|
||||
@param endSlice - Zero-based index at which to end the slice.
|
||||
|
||||
@example
|
||||
```
|
||||
import chalk from 'chalk';
|
||||
import sliceAnsi from 'slice-ansi';
|
||||
|
||||
const string = 'The quick brown ' + chalk.red('fox jumped over ') +
|
||||
'the lazy ' + chalk.green('dog and then ran away with the unicorn.');
|
||||
|
||||
console.log(sliceAnsi(string, 20, 30));
|
||||
```
|
||||
*/
|
||||
export default function sliceAnsi(string: string, startSlice: number, endSlice?: number): string;
|
||||
Reference in New Issue
Block a user