1234567891011121314 |
- /// <reference path="./types/index.d.ts" />
- interface IAppOption {
- globalData: {
- userInfo?: any,
- baseUrl: string,
- appId: string,
- deviceNum: string,
- isLogin: boolean,
- }
- userInfoReadyCallback?: WechatMiniprogram.GetUserInfoSuccessCallback,
- setAppId(): void,
- onLogin(code: string): void
- }
|