customer-riverside/web/modules/custom/riverside_pt/js/globals.d.ts
Philip Peterson 2d933926fb wip
2026-06-14 00:07:39 -07:00

14 lines
303 B
TypeScript

interface RiversidePtSettings {
eventsUrl: string;
storeSlotUrl: string;
bookingUrl: string;
holidays: Record<string, boolean>;
scrollTo?: string;
}
interface Window {
rptScrollTo: (el: Element, animate?: boolean) => void;
drupalSettings?: {
riversidePt?: RiversidePtSettings;
};
}