8 lines
292 B
TypeScript
8 lines
292 B
TypeScript
/// <reference types="svelte" />
|
|
/**
|
|
* Indicates that the user has enabled reduced motion on their device.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
|
|
*/
|
|
export declare const prefersReducedMotionStore: import("svelte/store").Readable<boolean>;
|