30 lines
727 B
TypeScript
30 lines
727 B
TypeScript
import type { CSSProperties } from "react";
|
|
import qrcodegen from "./codegen";
|
|
|
|
export type Modules = ReturnType<qrcodegen.QrCode["getModules"]>;
|
|
export type Excavation = { x: number; y: number; w: number; h: number };
|
|
|
|
export type ImageSettings = {
|
|
src: string;
|
|
height: number;
|
|
width: number;
|
|
excavate: boolean;
|
|
x?: number;
|
|
y?: number;
|
|
};
|
|
|
|
export type QRProps = {
|
|
value: string;
|
|
size?: number;
|
|
level?: string;
|
|
bgColor?: string;
|
|
fgColor?: string;
|
|
margin?: number;
|
|
style?: CSSProperties;
|
|
imageSettings?: ImageSettings;
|
|
isOGContext?: boolean;
|
|
};
|
|
export type QRPropsCanvas = QRProps &
|
|
React.CanvasHTMLAttributes<HTMLCanvasElement>;
|
|
export type QRPropsSVG = QRProps & React.SVGProps<SVGSVGElement>;
|