mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-04 11:43:02 +00:00
18 lines
394 B
Plaintext
18 lines
394 B
Plaintext
![]() |
/* @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,
|
||
|
|};
|