UNPKG

pdfmake-wrapper

Version:

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

13 lines 368 B
import { IVector } from './vector.interface'; export interface IPoint { readonly x: number; readonly y: number; } /** * Interface that defines the properties that a polyline can has */ export interface IPolyline extends IVector { readonly closePath?: boolean; readonly points?: IPoint[]; } //# sourceMappingURL=polyline.interface.d.ts.map