index.d.ts 358 B

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