From 22e4993a006834c1403d4a0f6fcc45b038e82940 Mon Sep 17 00:00:00 2001 From: EdJoPaTo Date: Thu, 25 Nov 2021 13:46:08 +0100 Subject: [PATCH] feat: add I18nContextFlavor --- source/context.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/context.ts b/source/context.ts index 3804ac58..1f8b837a 100644 --- a/source/context.ts +++ b/source/context.ts @@ -1,5 +1,9 @@ import {Config, Repository, TemplateData, Template} from './types'; +export interface I18nContextFlavor { + readonly i18n: I18nContext; +} + export class I18nContext { readonly config: Config; readonly repository: Repository;