UNPKG

gros-bras-shared

Version:

This holds all shared files such as interfaces or helpers used by Gros Bras, both frontoffices and baackoffices, and backend etc...

13 lines (12 loc) 278 B
export interface IInvoiceAdditionalFees { tva: number; reduction: IReduction | null; other_reductions: IReduction[]; } interface IReduction { percentage_value: number; reason: string; icon_url?: string; description?: string; } export {};