city_card/vant/dist/mixins/page-scroll.d.ts
2023-07-15 14:25:28 +08:00

9 lines
324 B
TypeScript
Executable File

/// <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 {};