Moved register and login to user folder. Setup basic login, register and JWT

This commit is contained in:
2024-10-08 20:35:38 +00:00
parent c634b8e73f
commit eddd1d8ef7
242 changed files with 3628 additions and 7542 deletions

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

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