index.d.ts 369 B

12345678910111213141516
  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. }
  11. userInfoReadyCallback?: WechatMiniprogram.GetUserInfoSuccessCallback,
  12. setAppId(): void,
  13. onSerivceLocationChange?(): void,
  14. onLogin(code: string): void
  15. }