synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
17 lines • 680 B
TypeScript
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