Cleaned up project. Moved backend logic to FastAPI. Changed login/register routes to use FastAPI
This commit is contained in:
6
node_modules/strip-ansi/index.d.ts
generated
vendored
6
node_modules/strip-ansi/index.d.ts
generated
vendored
@ -3,7 +3,7 @@ Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a
|
||||
|
||||
@example
|
||||
```
|
||||
import stripAnsi = require('strip-ansi');
|
||||
import stripAnsi from 'strip-ansi';
|
||||
|
||||
stripAnsi('\u001B[4mUnicorn\u001B[0m');
|
||||
//=> 'Unicorn'
|
||||
@ -12,6 +12,4 @@ stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
|
||||
//=> 'Click'
|
||||
```
|
||||
*/
|
||||
declare function stripAnsi(string: string): string;
|
||||
|
||||
export = stripAnsi;
|
||||
export default function stripAnsi(string: string): string;
|
||||
|
||||
Reference in New Issue
Block a user