feat:完成自定义文字涂色卡
This commit is contained in:
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
type PrintHeader = 'wechat' | 'noLogoImage' | 'LogoImage' | 'minimal';
|
||||
type WordCard = {
|
||||
color: string;
|
||||
word: string;
|
||||
};
|
||||
|
||||
interface CardList extends Array<WordCard> { }
|
||||
Vendored
+5
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user