mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
20 lines
962 B
TypeScript
20 lines
962 B
TypeScript
/// <reference types="miniprogram-api-typings" />
|
|
export declare function isDef(value: any): boolean;
|
|
export declare function isObj(x: any): boolean;
|
|
export declare function range(num: number, min: number, max: number): number;
|
|
export declare function nextTick(fn: Function): void;
|
|
export declare function getSystemInfoSync(): WechatMiniprogram.GetSystemInfoSyncResult;
|
|
export declare function addUnit(value?: string | number): string | undefined;
|
|
export declare function requestAnimationFrame(
|
|
cb: Function
|
|
): void | WechatMiniprogram.NodesRef;
|
|
export declare function pickExclude(obj: unknown, keys: string[]): {};
|
|
export declare function getRect(
|
|
this: WechatMiniprogram.Component.TrivialInstance,
|
|
selector: string
|
|
): Promise<WechatMiniprogram.BoundingClientRectCallbackResult>;
|
|
export declare function getAllRect(
|
|
this: WechatMiniprogram.Component.TrivialInstance,
|
|
selector: string
|
|
): Promise<WechatMiniprogram.BoundingClientRectCallbackResult[]>;
|