/** * Observe all changes to the device-pixel-content-box of a node. * * @param {Element} node * @returns {ActionReturn} */ export function devicePixelResizeObserver(node: Element): ActionReturn; /** * */ export type ActionReturn> = import("svelte/action").ActionReturn; export type DevicePixelResizeEvent = CustomEvent<{ width: number; height: number; }>; export type Attributes = { "on:devicepixelresize"?: (e: DevicePixelResizeEvent) => void; };