We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ac988e commit 2b000f9Copy full SHA for 2b000f9
jsbarcode.d.ts
@@ -21,6 +21,10 @@ declare namespace JsBarcode {
21
valid?: (valid: boolean) => void;
22
}
23
24
+ interface NodeOptions extends BaseOptions {
25
+ xmlDocument?: XMLDocument;
26
+ }
27
+
28
interface Code128Options extends BaseOptions {
29
ean128?: boolean;
30
@@ -34,7 +38,7 @@ declare namespace JsBarcode {
34
38
lastChar?: string;
35
39
36
40
37
- type Options = BaseOptions | Code128Options | Ean13Options;
41
+ type Options = BaseOptions | Code128Options | Ean13Options | NodeOptions;
42
43
interface api {
44
options(options: Options): api;
0 commit comments