From 7a99ee71823c8f4ff4df7527265c44467668f648 Mon Sep 17 00:00:00 2001 From: Valeriy Sidorenko Date: Wed, 3 May 2023 12:25:08 +0200 Subject: [PATCH] feat: export KeysData type --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 47f6581..3d32b34 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,7 +4,7 @@ import {Logger, Params, PluralForm, Pluralizer} from './types'; import pluralizerEn from './plural/en'; import pluralizerRu from './plural/ru'; -type KeysData = Record; +export type KeysData = Record; type KeysetData = Record; export * from './types';