14 lines
352 B
TypeScript
14 lines
352 B
TypeScript
/// <reference path="./global.d.ts" />
|
|
/// <reference path="./common.d.ts" />
|
|
|
|
interface IAppOption {
|
|
globalData: {
|
|
uuid: string;
|
|
userInfo?: WechatMiniprogram.UserInfo;
|
|
env: string;
|
|
printConfig?: PrintConfig;
|
|
};
|
|
userInfoReadyCallback?: WechatMiniprogram.GetUserInfoSuccessCallback;
|
|
[key: string]: any;
|
|
}
|