// Type definitions for react-native-qrcode 0.2 // Project: https://github.com/cssivision/react-native-qrcode // Definitions by: York Yao // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 import * as React from 'react'; export default class QRCode extends React.Component { } export interface QRCodeProperties { value?: string; size?: number; bgColor?: string; fgColor?: string; }