UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

17 lines 680 B
import React from 'react'; import { MarkdownSynapseProps } from './MarkdownSynapse'; export type MarkdownCollapseProps = { textDescription?: string; showCopyPlainText?: boolean; title?: string; setPlainTextResult?: (plainText: string) => void; } & MarkdownSynapseProps; /** * Wraps a MarkdownSynapse in a Collapse area, with customizable text description. * Will pass down all properties to the MarkdownSynapse component, so this can be used in * the portal detail pages. * @param props */ export declare const MarkdownCollapse: (props: MarkdownCollapseProps) => React.ReactNode; export default MarkdownCollapse; //# sourceMappingURL=MarkdownCollapse.d.ts.map