import type { ErrorCorrectionLevel } from "../types";

interface ErrorCorrectionLevels {
  [key: string]: ErrorCorrectionLevel;
}

export default {
  L: "L",
  M: "M",
  Q: "Q",
  H: "H"
} as ErrorCorrectionLevels;
