Fix theme import (#8749)

This commit is contained in:
tamaina
2022-05-28 21:59:23 +09:00
committed by GitHub
parent 708fba989a
commit 4a50c49211
5 changed files with 46 additions and 31 deletions

View File

@@ -1,5 +1,7 @@
import { Theme } from '../src/scripts/theme';
declare module '@/themes/*.json5' {
export = Theme;
import { Theme } from "@/scripts/theme";
const theme: Theme;
export default theme;
}