Files
2026-03-27 14:04:28 +08:00

19 lines
391 B
TypeScript

import type { Messages } from "@/types/messages";
import { supportedLocales } from "@/constants/i18n-config";
declare module "lodash";
declare global {
interface Window {
showDirectoryPicker?: () => Promise<FileSystemDirectoryHandle>;
}
}
declare module "next-intl" {
interface AppConfig {
Locale: (typeof supportedLocales)[number];
Messages: Messages;
}
}
export {};