Files
workavia-calendar-front/src/window.d.ts
T
Camille Moussu 5989b3661e [#562] added DAV_BASE_URL to env (#570)
Co-authored-by: Camille Moussu <cmoussu@linagora.com>
2026-02-23 11:29:02 +01:00

35 lines
822 B
TypeScript

import type { AppIconProps } from "@/components/Menubar/Menubar";
import type { MutableRefObject } from "react";
import type { CalendarApi } from "@fullcalendar/core";
export {};
declare global {
interface Window {
SSO_BASE_URL: string;
SSO_CLIENT_ID: string;
SSO_SCOPE: string;
SSO_REDIRECT_URI: string;
SSO_RESPONSE_TYPE: "code";
SSO_CODE_CHALLENGE_METHOD: "S256";
SSO_POST_LOGOUT_REDIRECT: string;
CALENDAR_BASE_URL: string;
DAV_BASE_URL: string;
MAIL_SPA_URL: string;
VIDEO_CONFERENCE_BASE_URL: string;
DEBUG: boolean;
LANG: string;
WEBSOCKET_URL: string;
WS_DEBOUNCE_PERIOD_MS: number;
WS_PING_PERIOD_MS: number;
WS_PING_TIMEOUT_PERIOD_MS: number;
appList: AppIconProps[];
__calendarRef: MutableRefObject<CalendarApi | null>;
}
}