File size: 394 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* @flow */

import * as React from 'react';

export type Options = {|
  filterProps: string[],
  showDefaultProps: boolean,
  showFunctions: boolean,
  functionValue: Function,
  tabStop: number,
  useBooleanShorthandSyntax: boolean,
  useFragmentShortSyntax: boolean,
  sortProps: boolean,

  maxInlineAttributesLineLength?: number,
  displayName?: (element: React.Element<*>) => string,
|};