customer-riverside/web/modules/custom/riverside_pt/js/globals.d.ts

15 lines
303 B
TypeScript
Raw Normal View History

2026-06-13 23:07:39 -08:00
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;
};
}