From cdc6af55387aac92b7d9fc16a57790068e4b6d49 Mon Sep 17 00:00:00 2001 From: "Xunnamius (Romulus)" Date: Sun, 30 Jun 2024 08:52:38 -0700 Subject: [PATCH] fix(types): pass through `CustomExecutionContext` as context type in `ImportedConfigurationModule` --- types/module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/module.ts b/types/module.ts index e6f6006..b623bc2 100644 --- a/types/module.ts +++ b/types/module.ts @@ -170,7 +170,7 @@ export type ImportedConfigurationModule< CustomExecutionContext extends ExecutionContext = ExecutionContext > = ( | (( - context: ExecutionContext + context: CustomExecutionContext ) => Promisable< Partial< | RootConfiguration