From 150513fbc4399c4f4c1f2505ae5dfaff24fca70b Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 28 Jan 2021 14:11:53 -0600 Subject: [PATCH] Export Logger type So plugins can pass the logger around. --- typings/pluginapi.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/pluginapi.d.ts b/typings/pluginapi.d.ts index aa9ce0ff..b0f6bd02 100644 --- a/typings/pluginapi.d.ts +++ b/typings/pluginapi.d.ts @@ -121,7 +121,7 @@ export { express } * * Re-exported so plugins don't have to import duplicate copies of the logger. */ -export { field, Level } +export { field, Level, Logger } export const proxy: ProxyServer