utils.d.ts 2.0 KB

1234567891011121314151617181920212223242526272829
  1. /// <reference types="miniprogram-api-typings" />
  2. /// <reference types="miniprogram-api-typings" />
  3. declare type Context = WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance;
  4. export declare const debounce: (func: any, wait?: number) => (...rest: any[]) => void;
  5. export declare const throttle: (func: any, wait?: number, options?: any) => (...args: any[]) => void;
  6. export declare const classNames: (...args: any[]) => string;
  7. export declare const styles: (styleObj: any) => string;
  8. export declare const getAnimationFrame: (cb: Function) => WechatMiniprogram.NodesRef;
  9. export declare const getRect: (context: any, selector: string, needAll?: boolean) => Promise<any>;
  10. export declare const isNumber: (value: any) => boolean;
  11. export declare const addUnit: (value?: string | number) => string | undefined;
  12. export declare const getCharacterLength: (type: string, str: string, max?: number) => {
  13. length: number;
  14. characters: string;
  15. };
  16. export declare const chunk: (arr: any[], size: number) => any[][];
  17. export declare const getInstance: (context?: Context, selector?: string) => WechatMiniprogram.Component.TrivialInstance;
  18. export declare const unitConvert: (value: number | string) => number;
  19. export declare const setIcon: (iconName: any, icon: any, defaultIcon: any) => {
  20. [x: string]: any;
  21. };
  22. export declare const isBool: (val: any) => boolean;
  23. export declare const isObject: (val: any) => boolean;
  24. export declare const isString: (val: any) => boolean;
  25. export declare const toCamel: (str: any) => any;
  26. export declare const getCurrentPage: <T>() => T & WechatMiniprogram.OptionalInterface<WechatMiniprogram.Page.ILifetime> & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods<WechatMiniprogram.IAnyObject> & WechatMiniprogram.Page.Data<WechatMiniprogram.IAnyObject> & WechatMiniprogram.IAnyObject;
  27. export declare const uniqueFactory: (compName: any) => () => string;
  28. export declare const calcIcon: (icon: string | Record<string, any>, defaultIcon?: string) => string | Record<string, any>;
  29. export {};