Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
greybax authored Dec 13, 2023
1 parent c79f67d commit 3f3b7e8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -49,3 +49,5 @@ export const startSearch = () => {
const initialDelay = getRandomDelay();
setTimeout(func, initialDelay);
};

export default startSearch

0 comments on commit 3f3b7e8

Please sign in to comment.