Interface WriteResult

interface WriteResult {
    error: string;
    image: null | Blob;
}

Hierarchy

  • Omit<ZXingWriteResult, "image" | "delete">
    • WriteResult

Properties

Properties

error: string

Encoding error. If there's no error, this will be an empty string "".

image: null | Blob

The encoded barcode as an image blob. If some error happens, this will be null.