From 691c54875ae0e3c80fc2b8f00c9168efb1f8ee4c Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Fri, 5 Aug 2022 17:33:49 -0400 Subject: [PATCH] fix(striker-ui): export testLength() in barrel --- striker-ui/lib/test_input/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/striker-ui/lib/test_input/index.ts b/striker-ui/lib/test_input/index.ts index 092a1d01..a5241c87 100644 --- a/striker-ui/lib/test_input/index.ts +++ b/striker-ui/lib/test_input/index.ts @@ -1,6 +1,7 @@ import testInput from './testInput'; +import testLength from './testLength'; import testMax from './testMax'; import testNotBlank from './testNotBlank'; import testRange from './testRange'; -export { testInput, testMax, testNotBlank, testRange }; +export { testInput, testLength, testMax, testNotBlank, testRange };