UNPKG

@dangl/angular-ava

Version:

[![Node version](https://img.shields.io/npm/v/@dangl/angular-ava)](https://www.npmjs.com/package/@dangl/angular-ava)

14 lines (13 loc) 408 B
import { ITextWordInvoice } from './invoice-words.model'; export interface IConfigurationInvoice { textWords?: ITextWordInvoice | null; pdfViewEnabled?: boolean; language?: LanguageType; quantityDecimalPlaces?: string; colorSettings?: IColorSettings | null; } export interface IColorSettings { backgroundColor: string; textColor: string; } export type LanguageType = 'en' | 'de';