/** * The platform root element type for scroll and dimension operations. * Can be an HTMLElement for scrollable containers, Window for document-level * scrolling, or null when no root is available. * * @see getPlatformDimensions-setup.ts - Used to locate the scrollable root * @see platformScrollChanged-setup.ts - Used for scroll event binding */ export type PlatformRoot = HTMLElement | Window | null; //# sourceMappingURL=utility.d.ts.map