Skip to content

Commit 5091101

Browse files
committed
Export CheckboxChange type in order to use it in your project
1 parent 3358c97 commit 5091101

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CheckboxGroup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import React, {
44
} from "react";
55
import CheckboxGroupContext, { CheckboxEntry } from "./CheckboxGroupContext";
66

7-
interface CheckboxChange extends React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
7+
export interface CheckboxChange extends React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
88
checked: boolean;
99
disabled: boolean;
1010
}

0 commit comments

Comments
 (0)