mirror of
https://github.com/frappe/books.git
synced 2024-11-14 09:24:04 +00:00
16 lines
367 B
TypeScript
16 lines
367 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;
|
|
override hidden: HiddenMap = {};
|
|
}
|