Skip to content

Commit

Permalink
Merge pull request #24 from RSlijkhuis/master
Browse files Browse the repository at this point in the history
Export CheckboxChange type in order to use it in your project
  • Loading branch information
AlexLisenkov authored Jun 18, 2021
2 parents 3358c97 + 5091101 commit 76bd544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CheckboxGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React, {
} from "react";
import CheckboxGroupContext, { CheckboxEntry } from "./CheckboxGroupContext";

interface CheckboxChange extends React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
export interface CheckboxChange extends React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
checked: boolean;
disabled: boolean;
}
Expand Down

0 comments on commit 76bd544

Please sign in to comment.