UNPKG

pdfmake-wrapper

Version:

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

11 lines 324 B
import { IVector } from './vector.interface'; /** * Interface that defines the properties that an ellipse can has */ export interface IEllipse extends IVector { readonly x?: number; readonly y?: number; readonly r1?: number; readonly r2?: number; } //# sourceMappingURL=ellipse.interface.d.ts.map