You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
839 B
14 lines
839 B
8 months ago
|
/**
|
||
|
* The writer part API of this package is subject to change a lot.
|
||
|
* Please track the status of [this issue](https://github.com/zxing-cpp/zxing-cpp/issues/332).
|
||
|
*
|
||
|
* @packageDocumentation
|
||
|
*/
|
||
|
import type { WriterOptions } from "../bindings/index.js";
|
||
|
import { type ZXingModuleOverrides, type ZXingWriterModule } from "../core.js";
|
||
|
export declare function getZXingModule(zxingModuleOverrides?: ZXingModuleOverrides): Promise<ZXingWriterModule>;
|
||
|
export declare function setZXingModuleOverrides(zxingModuleOverrides: ZXingModuleOverrides): void;
|
||
|
export declare function writeBarcodeToImageFile(text: string, writerOptions?: WriterOptions): Promise<import("./index.js").WriteResult>;
|
||
|
export * from "../bindings/exposedWriterBindings.js";
|
||
|
export { purgeZXingModule, type ZXingWriterModule, type ZXingModuleOverrides, } from "../core.js";
|