index.d.ts 316 B

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