UNPKG

@zxing/library

Version:

TypeScript port of ZXing multi-format 1D/2D barcode image processing library.

19 lines (18 loc) 800 B
import GridSampler from './GridSampler'; export default class GridSamplerInstance { private static gridSampler; /** * Sets the implementation of GridSampler used by the library. One global * instance is stored, which may sound problematic. But, the implementation provided * ought to be appropriate for the entire platform, and all uses of this library * in the whole lifetime of the JVM. For instance, an Android activity can swap in * an implementation that takes advantage of native platform libraries. * * @param newGridSampler The platform-specific object to install. */ static setGridSampler(newGridSampler: GridSampler): void; /** * @return the current implementation of GridSampler */ static getInstance(): GridSampler; }