14 lines
270 B
TypeScript
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;
|
|
}
|