24 lines
374 B
TypeScript
24 lines
374 B
TypeScript
import Utils from "./Utils";
|
|
import ease from "./Easings";
|
|
import Theme from "./Theme";
|
|
|
|
declare module "unom-style";
|
|
|
|
export {
|
|
/**
|
|
* @public
|
|
* Util function to create framer-motion transitions based on penner's functions
|
|
*/
|
|
ease,
|
|
/**
|
|
* @public
|
|
* Collection of Utils
|
|
*/
|
|
Utils,
|
|
/**
|
|
* @public
|
|
* Collection of theming tools
|
|
*/
|
|
Theme,
|
|
};
|