svelte-motion
Version:
Svelte animation library based on the React library framer-motion.
13 lines (12 loc) • 401 B
TypeScript
/**
based on framer-motion@4.1.17,
Copyright (c) 2018 Framer B.V.
*/
/**
* A list of value types commonly used for dimensions
*/
export declare const dimensionValueTypes: import("style-value-types").ValueType[];
/**
* Tests a dimensional value against the list of dimension ValueTypes
*/
export declare const findDimensionValueType: (v: any) => import("style-value-types").ValueType | undefined;