version.d.ts 671 B

123456789101112131415
  1. /// <reference types="miniprogram-api-typings" />
  2. interface WxWorkSystemInfo extends WechatMiniprogram.SystemInfo {
  3. environment?: 'wxwork';
  4. }
  5. interface SystemInfo extends WxWorkSystemInfo, WechatMiniprogram.SystemInfo {
  6. }
  7. export declare function getSystemInfoSync(): SystemInfo;
  8. export declare function canIUseModel(): boolean;
  9. export declare function canIUseFormFieldButton(): boolean;
  10. export declare function canIUseAnimate(): boolean;
  11. export declare function canIUseGroupSetData(): boolean;
  12. export declare function canIUseNextTick(): boolean;
  13. export declare function canIUseCanvas2d(): boolean;
  14. export declare function canIUseGetUserProfile(): boolean;
  15. export {};