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

14 lines
270 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;
appHint: string;
}