Skip to content

Commit

Permalink
refactor(react): function type typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dackmin committed Mar 13, 2023
1 parent e22545a commit 4095efe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/lib/DateField/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ declare interface DateFieldProps extends React.ComponentPropsWithRef<any> {
valid?: boolean;
value?: Date;
weekDaysName?: FixedArray<string, 7>;
animateMenu?: (
animateMenu?(
menu: ReactNode | JSX.Element,
opts: { opened: boolean }
) => ReactNode | JSX.Element;
): ReactNode | JSX.Element;
onBlur?(e: Event): void;
onChange?(props: { value: Date; valid: boolean }): void;
onFocus?(e: Event): void;
Expand Down

0 comments on commit 4095efe

Please sign in to comment.