mirror of
https://github.com/halo-dev/theme-earth.git
synced 2025-10-14 22:47:03 +00:00

添加界面的 i18n 支持。 /kind feature Fixes https://github.com/halo-dev/theme-earth/issues/198 Fixes https://github.com/halo-dev/theme-earth/issues/75 ```release-note 添加界面的 i18n 支持。 ```
13 lines
221 B
TypeScript
13 lines
221 B
TypeScript
/// <reference types="vite/client" />
|
|
import type { Alpine } from "alpinejs";
|
|
|
|
export {};
|
|
|
|
declare global {
|
|
interface Window {
|
|
Alpine: Alpine;
|
|
SearchWidget: any;
|
|
i18nResources: Record<string, string>;
|
|
}
|
|
}
|