Skip to content

Function types are typed as any #13

@mattcompiles

Description

@mattcompiles

Description

Function types (e.g. event handlers) are typed as any. I'm not convinced react-polymorphic-box is at fault here but thought I'd raise it to discuss. In my example typescript seems to infer the correct type for the event handler (pictured below), however when implementing the handler it is not typed.

image

Reproduction

import React from 'react';
import { Box } from 'react-polymorphic-box'; 

const Test = () => (
  <Box
    as="li"
    onMouseDown={(event) => {
      // event is implicitly typed as any
    }}
  />
);

Expected behaviour

The event handler should be typed as expected.

Actual behaviour

Event handlers seem to be typed as any.

image

Environment

System:

  • OS: macOS Mojave 10.14.6
  • CPU: (8) x64 Intel(R) Core(TM) i7-8559U CPU @ 2.70GHz
  • Memory: 42.69 MB / 16.00 GB
  • Shell: 5.3 - /bin/zsh

Binaries:

  • Node: 12.18.2
  • Yarn: 1.22.4
  • npm: 6.14.5

Browsers:

  • Chrome: 84.0.4147.89
  • Firefox: 78.0.1
  • Safari: 12.1.2

npmPackages:

  • react-polymorphic-box: ^2.0.4 => 2.0.4
  • typescript: 3.9.6

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions