index.d.ts 411 B

1234567891011121314
  1. /// <reference path="./types/index.d.ts" />
  2. interface IAppOption {
  3. globalData: {
  4. SystemInfo?: WechatMiniprogram.SystemInfo,
  5. token?: string,
  6. setting?: WechatMiniprogram.AuthSetting,
  7. FileSystemManager?: WechatMiniprogram.FileSystemManager,
  8. phone?: string | undefined,
  9. configPage?: any
  10. }
  11. userInfoReadyCallback?: WechatMiniprogram.GetUserInfoSuccessCallback,
  12. [params:string]: any
  13. }