From 3f3b7e89d2c594eb6e06bcbd2c8d36037e6f4496 Mon Sep 17 00:00:00 2001 From: Aleksandr Filatov Date: Wed, 13 Dec 2023 11:15:56 -0800 Subject: [PATCH] fix --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 0360929..14d1b88 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,7 +1,7 @@ import randomWords from 'random-words'; // @ts-ignore -export const startSearch = () => { +const startSearch = () => { const iframe = document.getElementById('msBingFrame') as HTMLIFrameElement; const minDelayInput = document.getElementById('minDelay') as HTMLInputElement; const maxDelayInput = document.getElementById('maxDelay') as HTMLInputElement; @@ -49,3 +49,5 @@ export const startSearch = () => { const initialDelay = getRandomDelay(); setTimeout(func, initialDelay); }; + +export default startSearch \ No newline at end of file