mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2026-06-09 20:04:52 +00:00
12 lines
318 B
TypeScript
12 lines
318 B
TypeScript
import type {LocaleType} from '/#/config';
|
|
|
|
export const loadLocalePool: LocaleType[] = [];
|
|
|
|
export function setHtmlPageLang(locale: LocaleType) {
|
|
document.querySelector('html')?.setAttribute('lang', locale);
|
|
}
|
|
|
|
export function setLoadLocalePool(cb: (loadLocalePool: LocaleType[]) => void) {
|
|
cb(loadLocalePool);
|
|
}
|