Skip to content

Commit

Permalink
fix: updating snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
bombguy committed Nov 23, 2022
1 parent 1fea682 commit d19ea80
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4834,11 +4834,11 @@ export declare type SchoolCreateFormValidationValues = {
name?: ValidationFunction<string>;
Students?: ValidationFunction<Student>;
};
export declare type FormProps<T> = Partial<T> & React.DOMAttributes<HTMLDivElement>;
export declare type PrimitiveOverrideProps<T> = Partial<T> & React.DOMAttributes<HTMLDivElement>;
export declare type SchoolCreateFormOverridesProps = {
SchoolCreateFormGrid?: FormProps<GridProps>;
name?: FormProps<TextFieldProps>;
Students?: FormProps<AutocompleteProps>;
SchoolCreateFormGrid?: PrimitiveOverrideProps<GridProps>;
name?: PrimitiveOverrideProps<TextFieldProps>;
Students?: PrimitiveOverrideProps<AutocompleteProps>;
} & EscapeHatchProps;
export declare type SchoolCreateFormProps = React.PropsWithChildren<{
overrides?: SchoolCreateFormOverridesProps | undefined | null;
Expand Down Expand Up @@ -7275,11 +7275,11 @@ export declare type SchoolUpdateFormValidationValues = {
name?: ValidationFunction<string>;
Students?: ValidationFunction<Student>;
};
export declare type FormProps<T> = Partial<T> & React.DOMAttributes<HTMLDivElement>;
export declare type PrimitiveOverrideProps<T> = Partial<T> & React.DOMAttributes<HTMLDivElement>;
export declare type SchoolUpdateFormOverridesProps = {
SchoolUpdateFormGrid?: FormProps<GridProps>;
name?: FormProps<TextFieldProps>;
Students?: FormProps<AutocompleteProps>;
SchoolUpdateFormGrid?: PrimitiveOverrideProps<GridProps>;
name?: PrimitiveOverrideProps<TextFieldProps>;
Students?: PrimitiveOverrideProps<AutocompleteProps>;
} & EscapeHatchProps;
export declare type SchoolUpdateFormProps = React.PropsWithChildren<{
overrides?: SchoolUpdateFormOverridesProps | undefined | null;
Expand Down

0 comments on commit d19ea80

Please sign in to comment.