2
0
mirror of https://github.com/frappe/books.git synced 2025-01-24 07:38:25 +00:00
2025-01-03 09:41:11 +05:30

19 lines
445 B
TypeScript

import { Attachment } from 'fyo/core/types';
import { Doc } from 'fyo/model/doc';
import { HiddenMap } from 'fyo/model/types';
export class PrintSettings extends Doc {
logo?: Attachment;
email?: string;
phone?: string;
address?: string;
companyName?: string;
color?: string;
font?: string;
displayLogo?: boolean;
displayTime?: boolean;
posPrintWidth?: number;
amountInWords?: boolean;
override hidden: HiddenMap = {};
}