pdfmake-wrapper
Version:
Wrapper based on pdfmake library to generate PDF documents in an easy and readable way.
14 lines • 387 B
TypeScript
import { IStyleDefinition } from '.';
/**
* Interface that defines a QR
*/
export interface IQR extends IStyleDefinition {
readonly qr: string;
readonly foreground?: string;
readonly version?: number;
readonly fit?: number;
readonly eccLevel?: string;
readonly mode?: string;
readonly mask?: number;
}
//# sourceMappingURL=qr.interface.d.ts.map