Files
2026-03-26 17:33:04 +08:00

8 lines
179 B
TypeScript

export type PrintHeader = 'wechat' | 'noLogoImage' | 'LogoImage' | 'minimal';
export interface PrintConfig {
header: PrintHeader;
appName: string;
appHint: string;
}