metadata engine

This commit is contained in:
DecDuck
2024-10-04 13:01:06 +10:00
parent 196f87c219
commit 22ac7f6b15
16 changed files with 604 additions and 12 deletions
+3 -1
View File
@@ -1,8 +1,10 @@
import { MetadataHandler } from "./internal/metadata";
import { SessionHandler } from "./internal/session";
export * from "h3";
declare module "h3" {
interface H3EventContext {
session: SessionHandler
session: SessionHandler;
metadataHandler: MetadataHandler;
}
}