/// import { Margins as PdfMakeMargins } from 'pdfmake/build/pdfmake'; export interface Margins { left: number; top: number; right: number; bottom: number; } /** * Builds a PDF margins value. * * @example * * // all margins the same * margin(5) * * // all-zero margins * margin() * * // specific margins * margin({ left: 1, top: 1 }) */ declare function margin(margins: PdfMakeMargins): PdfMakeMargins; declare function margin(margins?: Partial): PdfMakeMargins; export default margin; //# sourceMappingURL=margin.d.ts.map