vant-weapp/dist/mixins/page-scroll.d.ts
2020-09-29 16:53:42 +08:00

6 lines
261 B
TypeScript

/// <reference types="wechat-miniprogram" />
declare type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption;
declare type Scroller = (event: IPageScrollOption) => void;
export declare const pageScrollMixin: (scroller: Scroller) => string;
export {};