Skip to content

Commit

Permalink
Added typing for app
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTV12345 committed Sep 24, 2024
1 parent 518256b commit bb3fa1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/hooks/express/specialpages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const convertTypescript = (content: string) => {
}
}

const handleLiveReload = async (args: any, padString: string, timeSliderString: string, indexString: any) => {
const handleLiveReload = async (args: ArgsExpressType, padString: string, timeSliderString: string, indexString: any) => {
const chokidar = await import('chokidar')
const watcher = chokidar.watch(path.join(settings.root, 'src', 'static', 'js'), {});
let routeHandlers: { [key: string]: Function } = {};
Expand Down

0 comments on commit bb3fa1f

Please sign in to comment.