feat:完成自定义文字涂色卡

This commit is contained in:
2025-07-02 15:17:50 +08:00
parent 26af95b604
commit 8006695f65
19 changed files with 201 additions and 39 deletions
+7
View File
@@ -0,0 +1,7 @@
type PrintHeader = 'wechat' | 'noLogoImage' | 'LogoImage' | 'minimal';
type WordCard = {
color: string;
word: string;
};
interface CardList extends Array<WordCard> { }
+5
View File
@@ -1,7 +1,12 @@
/// <reference path="./global.d.ts" />
/// <reference path="./common.d.ts" />
interface IAppOption {
globalData: {
userInfo?: WechatMiniprogram.UserInfo;
env: string;
printHeader?: PrintHeader;
};
userInfoReadyCallback?: WechatMiniprogram.GetUserInfoSuccessCallback;
[key: string]: any;
}