UNPKG

pdfmake-wrapper

Version:

Wrapper based on pdfmake library to generate PDF documents in an easy and readable way.

16 lines 442 B
/** * Interface that defines the properties that a vector can has */ export interface IVector { readonly type: string; readonly color?: string; readonly lineColor?: string; readonly lineWidth?: number; readonly lineCap?: string; readonly dash?: { length: number; }; readonly fillOpacity?: number; readonly linearGradient?: string[]; } //# sourceMappingURL=vector.interface.d.ts.map