Skip to content

Commit 7e7d438

Browse files
committed
fix(mui): add remaining type arguments to select
1 parent 449d077 commit 7e7d438

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/mui-component-mapper/src/files/select.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { AutocompleteProps } from "@material-ui/lab/Autocomplete";
33
import { ReactNode } from "react";
44
import { GridProps, TextFieldProps, InputProps } from "@material-ui/core";
55

6-
interface InternalSelectProps<T> extends AutocompleteProps<T> {
6+
interface InternalSelectProps<T> extends AutocompleteProps<T, boolean | undefined, boolean | undefined, boolean | undefined> {
77
isRequired?: boolean;
88
isDisabled?: boolean;
99
isReadOnly?: boolean;

0 commit comments

Comments
 (0)