7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
type PrintHeader = 'wechat' | 'noLogoImage' | 'LogoImage' | 'minimal';
|
|
type WordCard = {
|
|
color: string;
|
|
word: string;
|
|
};
|
|
|
|
interface CardList extends Array<WordCard> { } |