diff --git a/src/express/index.ts b/src/express/index.ts index bfa8176..a5dad7c 100644 --- a/src/express/index.ts +++ b/src/express/index.ts @@ -1 +1,2 @@ +export type { ApitallyConsumer } from "../common/types.js"; export { useApitally } from "./middleware.js"; diff --git a/src/fastify/index.ts b/src/fastify/index.ts index 83b644a..1443baf 100644 --- a/src/fastify/index.ts +++ b/src/fastify/index.ts @@ -1 +1,2 @@ +export type { ApitallyConsumer } from "../common/types.js"; export { default as apitallyPlugin } from "./plugin.js"; diff --git a/src/koa/index.ts b/src/koa/index.ts index bfa8176..a5dad7c 100644 --- a/src/koa/index.ts +++ b/src/koa/index.ts @@ -1 +1,2 @@ +export type { ApitallyConsumer } from "../common/types.js"; export { useApitally } from "./middleware.js"; diff --git a/src/nestjs/index.ts b/src/nestjs/index.ts index 48cca8a..b78cf85 100644 --- a/src/nestjs/index.ts +++ b/src/nestjs/index.ts @@ -1 +1,2 @@ +export type { ApitallyConsumer } from "../common/types.js"; export { useApitally } from "../express/index.js";