Files
doodle-mini/typings/index.d.ts
T
2025-12-11 13:02:44 +08:00

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;
}