/**
* IIFE build entry-point for TouchMomentumPlugin.
*
* When loaded as a plain
*
*
*/
import { TouchMomentumPlugin } from '../../plugins/touch-momentum';
declare global {
interface Window {
scrollToSmooth?: {
use(plugin: typeof TouchMomentumPlugin): void;
};
}
}
export default TouchMomentumPlugin;