feat: adding level generic interface

This commit is contained in:
Chubby Granny Chaser
2025-11-29 02:19:21 +00:00
parent 59b3fb5317
commit f41128c4c8
48 changed files with 720 additions and 175 deletions

View File

@@ -28,6 +28,13 @@
- Use async/await instead of promises when possible
- Prefer named exports over default exports for utilities and services
## TypeScript Array Syntax
- **Always use `T[]` syntax instead of `Array<T>`** for array types
- Prefer: `string[]`, `number[]`, `MyType[]`
- Avoid: `Array<string>`, `Array<number>`, `Array<MyType>`
- This applies to all type annotations, type assertions, and generic type parameters
## Comments
- Keep comments concise and purposeful; avoid verbose explanations.