1.0.2 • Published 6 months ago

@types/react-wheelpicker v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/react-wheelpicker

Summary

This package contains type definitions for react-wheelpicker (https://github.com/sahilverma2209/react-wheelpicker).

Details

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

index.d.ts

// Type definitions for react-wheelpicker 1.0
// Project: https://github.com/sahilverma2209/react-wheelpicker
// Definitions by: Timothy Odei Yirenkyi <https://github.com/tyirenkyi>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

import React = require("react");

interface Props {
    scrollerId: string;
    data: string[];
    animation: string;
    height: number;
    parentHeight: number;
    defaultSelection: number;
    updateSelection: (index: number) => void;
    fontSize: number;
}

export default class WheelPicker extends React.Component<Props> {}

export {};

Additional Details

  • Last updated: Thu, 07 Oct 2021 18:01:32 GMT
  • Dependencies: @types/react
  • Global values: none

Credits

These definitions were written by Timothy Odei Yirenkyi.