2024-01-27 05:42:45 +00:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
2024-06-05 23:44:57 +00:00
|
|
|
import type { KcContext as KcContextLogin } from "./login/kcContext";
|
|
|
|
import type { KcContext as KcContextAccount } from "./account/kcContext";
|
|
|
|
|
|
|
|
|
|
|
|
declare global {
|
|
|
|
interface Window {
|
|
|
|
kcContext?: KcContextLogin | KcContextAccount;
|
|
|
|
}
|
2024-01-27 05:42:45 +00:00
|
|
|
}
|