-
-
Notifications
You must be signed in to change notification settings - Fork 516
/
Copy pathindex.ts
28 lines (25 loc) · 830 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import QRCodeStyling from "./core/QRCodeStyling";
import dotTypes from "./constants/dotTypes";
import cornerDotTypes from "./constants/cornerDotTypes";
import cornerSquareTypes from "./constants/cornerSquareTypes";
import errorCorrectionLevels from "./constants/errorCorrectionLevels";
import errorCorrectionPercents from "./constants/errorCorrectionPercents";
import modes from "./constants/modes";
import qrTypes from "./constants/qrTypes";
import drawTypes from "./constants/drawTypes";
import shapeTypes from "./constants/shapeTypes";
import gradientTypes from "./constants/gradientTypes";
export * from "./types";
export {
dotTypes,
cornerDotTypes,
cornerSquareTypes,
errorCorrectionLevels,
errorCorrectionPercents,
modes,
qrTypes,
drawTypes,
shapeTypes,
gradientTypes
};
export default QRCodeStyling;