11 lines
164 B
TypeScript
11 lines
164 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
import type i18n from "i18next";
|
|
|
|
declare global {
|
|
interface Window {
|
|
logout: () => void;
|
|
i18n: typeof i18n;
|
|
}
|
|
}
|