mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
9 lines
324 B
TypeScript
9 lines
324 B
TypeScript
/// <reference types="miniprogram-api-typings" />
|
|
declare type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption;
|
|
declare type Scroller = (
|
|
this: WechatMiniprogram.Component.TrivialInstance,
|
|
event?: IPageScrollOption
|
|
) => void;
|
|
export declare const pageScrollMixin: (scroller: Scroller) => string;
|
|
export {};
|