pdfmake-wrapper
Version:
Wrapper based on pdfmake library to generate PDF documents in an easy and readable way.
11 lines • 316 B
TypeScript
import { IVector } from './vector.interface';
/**
* Interface that defines the properties that a line can has
*/
export interface ILine extends IVector {
readonly x1?: number;
readonly x2?: number;
readonly y1?: number;
readonly y2?: number;
}
//# sourceMappingURL=line.interface.d.ts.map