From 18ad33cedcb756d0d4a0472f5b816f30bb83288f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=94=E7=8E=8B=E5=B0=91=E5=B9=B4?= Date: Fri, 8 Nov 2024 03:56:54 +0800 Subject: [PATCH] feat: export type HttpLoggerOptions (#51) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 66ac4df..7213c85 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ export { pinoLogger, logger } from "./middleware"; export { PinoLogger, httpCfgSym } from "./logger"; export { getLogger } from "./utils"; -export type { Options, Env } from "./types"; +export type { Options, Env, HttpLoggerOptions } from "./types";