12 lines
249 B
TypeScript
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;
|
|
} |