Closed3

TypeScriptの型定義がないReactのコンポーネントライブラリの型定義をしたい

N04hN04h

以下でできた

react-select2-wrapper.d.ts
declare module "react-select2-wrapper" {
  import React from "react";

  type Select2Props = React.DetailedHTMLProps<React.HTMLAttributes<HTMLSelectElement>, HTMLSelectElement>;

  export class Select2 extends React.Component<Select2Props> {}
}
このスクラップは2022/07/26にクローズされました