Compare commits

..

2 Commits

Author SHA1 Message Date
c55f39d1e5 chore: update version in Deno configuration file
Signed-off-by: Max P. <Mail@MPassarello.de>
2025-05-02 20:01:05 +02:00
3ac76b09d3 feat(export): add re-exports for shared modules
- Add re-exports for classes, types, interfaces, decorators, and helpers.
- Remove unused `export.ts` file to streamline module structure.

Signed-off-by: Max P. <Mail@MPassarello.de>
2025-05-02 20:00:59 +02:00
3 changed files with 6 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
{ {
"version": "2.0.0",
"compilerOptions": {}, "compilerOptions": {},
"lint": { "lint": {
"files": { "files": {

View File

View File

@@ -0,0 +1,5 @@
export { TSinjex } from "./classes/mod.ts";
export type { Identifier, InitDelegate } from "./types/mod.ts";
export type { ITSinjex, ITSinjex_ } from "./interfaces/mod.ts";
export { Inject, Register } from "./decorators/mod.ts";
export type { ImplementsStatic } from "./helper/mod.ts";