Cleaned up project. Moved backend logic to FastAPI. Changed login/register routes to use FastAPI

This commit is contained in:
2024-10-12 22:12:08 +00:00
parent eddd1d8ef7
commit 97bce587d2
154 changed files with 1389 additions and 2658 deletions

22
node_modules/ansi-regex/index.d.ts generated vendored
View File

@ -1,20 +1,18 @@
declare namespace ansiRegex {
interface Options {
/**
Match only the first ANSI escape.
export type Options = {
/**
Match only the first ANSI escape.
@default false
*/
onlyFirst: boolean;
}
}
@default false
*/
readonly onlyFirst: boolean;
};
/**
Regular expression for matching ANSI escape codes.
@example
```
import ansiRegex = require('ansi-regex');
import ansiRegex from 'ansi-regex';
ansiRegex().test('\u001B[4mcake\u001B[0m');
//=> true
@ -32,6 +30,4 @@ ansiRegex().test('cake');
//=> ['\u001B]8;;https://github.com\u0007', '\u001B]8;;\u0007']
```
*/
declare function ansiRegex(options?: ansiRegex.Options): RegExp;
export = ansiRegex;
export default function ansiRegex(options?: Options): RegExp;