From b009af407128be9493a00338cd70a57059ced3b1 Mon Sep 17 00:00:00 2001 From: Simon Gurcke Date: Sun, 7 Jul 2024 19:21:04 +1000 Subject: [PATCH] Export ApitallyConsumer type --- src/express/index.ts | 1 + src/fastify/index.ts | 1 + src/koa/index.ts | 1 + src/nestjs/index.ts | 1 + 4 files changed, 4 insertions(+) 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";