Skip to content

Commit

Permalink
Update code style after prettier run
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Burton committed Jan 23, 2020
1 parent d92b3a3 commit 00753db
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/material-ui/src/FormControl/useFormControl.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ import { FormControlProps } from './FormControl';
// shut off automatic exporting
export {};

type ContextFromPropsKey = 'disabled' | 'error' | 'fullWidth' | 'hiddenLabel' | 'margin' | 'required' | 'variant';
type ContextFromPropsKey =
| 'disabled'
| 'error'
| 'fullWidth'
| 'hiddenLabel'
| 'margin'
| 'required'
| 'variant';

export interface FormControlState extends Pick<FormControlProps, ContextFromPropsKey> {
adornedStart: boolean;
Expand Down

0 comments on commit 00753db

Please sign in to comment.