2.1.6 • Published 3 months ago

@types/react-native-form v2.1.6

Weekly downloads
27
License
MIT
Repository
github
Last release
3 months ago

Installation

npm install --save @types/react-native-form

Summary

This package contains type definitions for react-native-form (https://github.com/julianocomg/react-native-form#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-form.

index.d.ts

// Type definitions for react-native-form 2.1
// Project: https://github.com/julianocomg/react-native-form#readme
// Definitions by: Mark Nelissen <https://github.com/marknelissen>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.4

import { Component } from 'react';
import { ViewProps } from 'react-native';

export interface FormProps extends ViewProps {
    customFields?: {
        [key: string]: {
            callbackProp: string;
            controlled: boolean;
            valueProp: string;
        }
    } | undefined;
    ref: string;
}

export default class Form extends Component<FormProps> { }

Additional Details

Credits

These definitions were written by Mark Nelissen.

2.1.6

3 months ago

2.1.5

5 months ago

2.1.2

8 months ago

2.1.4

6 months ago

2.1.3

7 months ago

2.1.1

3 years ago

2.1.0

5 years ago