6c93b1d995
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
19 lines
391 B
TypeScript
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 {};
|