keycloakify-custom/src/vite-env.d.ts
2024-06-06 01:44:57 +02:00

11 lines
275 B
TypeScript

/// <reference types="vite/client" />
import type { KcContext as KcContextLogin } from "./login/kcContext";
import type { KcContext as KcContextAccount } from "./account/kcContext";
declare global {
interface Window {
kcContext?: KcContextLogin | KcContextAccount;
}
}