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.
10 lines
563 B
10 lines
563 B
import type { ZXingModule } from "../core.js";
|
|
import type { ZXingEnum } from "./enum.js";
|
|
export declare const eanAddOnSymbols: readonly ["Ignore", "Read", "Require"];
|
|
export type EanAddOnSymbol = (typeof eanAddOnSymbols)[number];
|
|
/**
|
|
* @internal
|
|
*/
|
|
export type ZXingEanAddOnSymbol = Record<EanAddOnSymbol, ZXingEnum>;
|
|
export declare function eanAddOnSymbolToZXingEnum<T extends "reader" | "full">(zxingModule: ZXingModule<T>, eanAddOnSymbol: EanAddOnSymbol): ZXingEnum;
|
|
export declare function zxingEnumToEanAddOnSymbol(zxingEnum: ZXingEnum): EanAddOnSymbol;
|
|
|