codify-node
Version:
Generates 1D, 2D, and composite barcodes in png, svg, or eps formats.
13 lines (11 loc) • 310 B
text/typescript
type SymbologyResult = {
/** String output of symbology graphics */
data?: string
/** Width of the rendered symbology */
width: number
/** Height of the rendered symbology */
height: number
/** Messages produced by the library during render */
message: string
}
export default SymbologyResult