refactor(client): get rid of any

This commit is contained in:
Elian Doran 2026-01-07 22:01:35 +02:00
parent f2a74df511
commit 3d72ec80bb
No known key found for this signature in database
2 changed files with 8 additions and 5 deletions

View File

@ -12,8 +12,8 @@ async function bootstrap() {
async function initJQuery() {
const $ = (await import("jquery")).default;
(window as any).$ = $;
(window as any).jQuery = $;
window.$ = $;
window.jQuery = $;
}
async function setupGlob() {
@ -46,11 +46,11 @@ function loadStylesheets() {
cssToLoad.push(themeCssUrl);
}
if (themeUseNextAsBase === "next") {
cssToLoad.push(`${assetPath}/stylesheets/theme-next.css`)
cssToLoad.push(`${assetPath}/stylesheets/theme-next.css`);
} else if (themeUseNextAsBase === "next-dark") {
cssToLoad.push(`${assetPath}/stylesheets/theme-next-dark.css`)
cssToLoad.push(`${assetPath}/stylesheets/theme-next-dark.css`);
} else if (themeUseNextAsBase === "next-light") {
cssToLoad.push(`${assetPath}/stylesheets/theme-next-light.css`)
cssToLoad.push(`${assetPath}/stylesheets/theme-next-light.css`);
}
cssToLoad.push(`${assetPath}/stylesheets/style.css`);

View File

@ -63,6 +63,9 @@ type RequireMethod = (moduleName: string) => any;
declare global {
interface Window {
$: JQueryStatic;
jQuery: JQueryStatic;
logError(message: string);
logInfo(message: string);