pdfmake-wrapper
Version:
Wrapper based on pdfmake library to generate PDF documents in an easy and readable way.
9 lines • 323 B
TypeScript
import { IStyleDefinition } from '../style-definition.interface';
import { IVector } from './vector.interface';
/**
* Interface that defines the properties that a canvas can has
*/
export interface ICanvas extends IStyleDefinition {
readonly canvas: IVector[];
}
//# sourceMappingURL=canvas.interface.d.ts.map