chore(repo): remove project configuration and source files

- Delete all project configuration files, including ESLint, Prettier, and TypeScript settings.
- Remove GitHub workflows for CI/CD and documentation deployment.
- Delete source files, tests, and scripts related to the project.
- Clean up package.json and associated scripts.

Signed-off-by: Max P. <Mail@MPassarello.de>
This commit is contained in:
2025-05-02 19:54:24 +02:00
parent a70869a941
commit 67f587d0d0
32 changed files with 0 additions and 9305 deletions

View File

@@ -1,13 +0,0 @@
/**
* Generic constructor type.
* This type is used to define a constructor of a class.
*/
export type GenericConstructor<
T extends abstract new (...args: unknown[]) => InstanceType<T>,
> = new (...args: ConstructorParameters<T>) => T;
/**
* Force generic constructor type.
* This type is used to force a class to has a constructor.
*/
export type ForceConstructor<T> = new (...args: unknown[]) => T;