// Type definitions for qrcode.react 0.6 // Project: https://github.com/zpao/qrcode.react // Definitions by: Mleko // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.6 /// declare namespace qrcode { interface QRCodeProps { value: string; size?: number; bgColor?: string; fgColor?: string; level?: "L"|"M"|"Q"|"H"; } type QRCode = React.ComponentClass; } declare const qrcode: qrcode.QRCode; export = qrcode;