yoyo-ng-modulewindy
Version:
服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容
23 lines • 909 B
JavaScript
var AdQRConfig = /** @class */ (function () {
function AdQRConfig() {
/** 背景,默认:`white` */
this.background = 'white';
/** 背景透明级别,范围:`0-1` 之间,默认:`1.0` */
this.backgroundAlpha = 1.0;
/** 前景,默认:`black` */
this.foreground = 'black';
/** 前景透明级别,范围:`0-1` 之间,默认:`1.0` */
this.foregroundAlpha = 1.0;
/** 误差校正级别,默认:`L` */
this.level = 'L';
/** 二维码输出图片MIME类型,默认:`image/png` */
this.mime = 'image/png';
/** 内边距(单位:px),默认:`10` */
this.padding = 10;
/** 大小(单位:px),默认:`220` */
this.size = 220;
}
return AdQRConfig;
}());
export { AdQRConfig };
//# sourceMappingURL=qr.config.js.map