mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* feat(react-dependents): update to ts 2.8 * fix version mismatches * remove package.json * post merge updates * add package.json back again
17 lines
487 B
TypeScript
17 lines
487 B
TypeScript
// Type definitions for react-native-qrcode 0.2
|
|
// Project: https://github.com/cssivision/react-native-qrcode
|
|
// Definitions by: York Yao <https://github.com/plantain-00>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.8
|
|
|
|
import * as React from 'react';
|
|
|
|
export default class QRCode extends React.Component<QRCodeProperties> { }
|
|
|
|
export interface QRCodeProperties {
|
|
value?: string;
|
|
size?: number;
|
|
bgColor?: string;
|
|
fgColor?: string;
|
|
}
|