UNPKG
@darthmaim/barcode
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Verify EAN barcodes
github.com/darthmaim/barcode
darthmaim/barcode
@darthmaim/barcode
/
lib
/
ean8.d.ts
5 lines
(4 loc)
•
207 B
TypeScript
View Raw
1
2
3
4
5
import
{
Encoded
}
from
"./types"
;
export
declare
function
checkdigit
(
value
:
string
):
string
;
export
declare
function
isValid
(
value
:
string
):
boolean
;
export
declare
function
encode
(
value
:
string
):
Encoded
;