| 24 | }) => Promise<string>; |
| 25 | |
| 26 | export interface ConversionPanelProps { |
| 27 | splitTitle?: string; |
| 28 | splitLanguage?: Language; |
| 29 | editorTitle: string; |
| 30 | editorLanguage: Language; |
| 31 | editorDefaultValue?: string; |
| 32 | resultTitle: React.ReactNode; |
| 33 | resultLanguage: Language; |
| 34 | splitEditorProps?: Partial<EditorPanelProps>; |
| 35 | splitEditorDefaultValue?: string; |
| 36 | editorProps?: Partial<EditorPanelProps>; |
| 37 | resultEditorProps?: Partial<EditorPanelProps>; |
| 38 | transformer: Transformer; |
| 39 | defaultSplitValue?: string; |
| 40 | editorSettingsElement?: EditorPanelProps["settingElement"]; |
| 41 | resultSettingsElement?: EditorPanelProps["settingElement"]; |
| 42 | settings?: any; |
| 43 | } |
| 44 | |
| 45 | const ConversionPanel: React.FunctionComponent<ConversionPanelProps> = function({ |
| 46 | splitEditorProps, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…