export const defaultMargins = { top: 720, right: 720, bottom: 720, left: 720, header: 851, footer: 992, gutter: 0, } export type Margins = typeof defaultMargins export type Orient = 'landscape' | 'portrait' export const documentTemplate = (width: number, height: number, orient: string, margins: Margins) => { return ` ` }