// Type definitions for qrcode.react 0.9 // Project: https://github.com/zpao/qrcode.react, http://zpao.github.io/qrcode.react // Definitions by: Mleko , Yonas // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 /// declare namespace qrcode { interface QRCodeProps { value: string; size?: number; includeMargin?: boolean; bgColor?: string; fgColor?: string; level?: "L"|"M"|"Q"|"H"; renderAs?: "svg" | "canvas"; } type QRCode = React.ComponentClass; } declare const qrcode: qrcode.QRCode; export = qrcode;