index.d.ts 375 B

1234567891011121314151617
  1. /// <reference path="./types/index.d.ts" />
  2. interface IAppOption {
  3. globalData: {
  4. top: number,
  5. userInfo?: any,
  6. baseUrl: string,
  7. appId: string,
  8. deviceNum: string,
  9. isLogin: boolean,
  10. isTablet: boolean
  11. }
  12. userInfoReadyCallback?: WechatMiniprogram.GetUserInfoSuccessCallback,
  13. setAppId(): void,
  14. onLogin(code: string): void,
  15. isTablet(): void
  16. }