ts-barcode-generator
Version:
Simple Barcode Generator created in TypeScript
11 lines (10 loc) • 369 B
TypeScript
export default class CODE128 {
private static readonly START_MARKER;
private static readonly END_MARKER;
private static readonly MIDDLE_MARKER;
private static readonly LEFT_PARITY;
private static readonly RIGHT_PARITY;
private static calculateParity;
private static generateBinaryRepresentation;
static generate(data: string): string;
}