Files
doodle-mini/typings/common.d.ts
T
2025-07-16 18:31:55 +08:00

12 lines
249 B
TypeScript

type PrintHeader = 'wechat' | 'noLogoImage' | 'LogoImage' | 'minimal';
type WordCard = {
color: string;
word: string;
};
interface CardList extends Array<WordCard> { }
interface PrintConfig {
header: PrintHeader;
appName: string;
}