From cf23a073ea4ac3d6e07269b613dff0134695a7e3 Mon Sep 17 00:00:00 2001 From: Bsian Date: Fri, 3 Jan 2020 15:57:18 +0000 Subject: [PATCH] Include functions in export --- src/functions/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functions/index.ts b/src/functions/index.ts index bf1b87c..a349b65 100644 --- a/src/functions/index.ts +++ b/src/functions/index.ts @@ -1,4 +1,4 @@ -export { default as checkLock } from './checkLock'; +export { default as checkLock, clear as clearLock } from './checkLock'; export { default as dataConversion } from './dataConversion'; -export { default as checkSS } from './checkSS'; +export { default as checkSS, clear as clearSS } from './checkSS'; export { default as parseCertificate, Certificate } from './parseCertificate';