refactor(ui): Remove explicit any from globals

Signed-off-by: 김민영 <rlaalsdud41@naver.com>
This commit is contained in:
김민영 2026-01-11 00:29:23 +09:00
parent 9cb3641ccd
commit 035952bc8b
2 changed files with 8 additions and 4 deletions

View file

@ -1,6 +1,5 @@
import jquery from 'jquery';
import moment from 'moment';
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(window as any).jQuery = jquery;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(window as any).moment = require('moment');
window.jQuery = jquery;
window.moment = moment;

View file

@ -68,3 +68,8 @@ interface JQueryStatic {
scale: () => Color;
};
}
interface Window {
jQuery: JQueryStatic;
moment: typeof import('moment');
}