2024-06-06 01:44:57 +02:00
|
|
|
/* eslint-disable @typescript-eslint/ban-types */
|
|
|
|
|
import type { ExtendKcContext } from "keycloakify/login";
|
|
|
|
|
|
|
|
|
|
export type KcContextExtraProperties = {};
|
|
|
|
|
|
|
|
|
|
export type KcContextExtraPropertiesPerPage = {};
|
|
|
|
|
|
2024-06-06 05:26:06 +02:00
|
|
|
export type KcContext = ExtendKcContext<
|
|
|
|
|
KcContextExtraProperties,
|
|
|
|
|
KcContextExtraPropertiesPerPage
|
|
|
|
|
>;
|