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

28 lines 911 B
import React from 'react'; import { ReactElement } from 'react'; export declare enum ProgrammaticOptionsTabs { COMMAND_LINE = "Command Line", R = "R", PYTHON = "Python" } export type ProgrammaticInstructionsModalProps = { show: boolean; title: string; onClose: () => void; pythonNotes?: ReactElement; pythonCode?: string; rNotes?: ReactElement; rCode?: string; cliNotes?: ReactElement; cliCode?: string; helpMarkdown?: string; helpUrl?: string; }; /** * Modal used to show programmatic instructions * @param props * @returns */ export declare const ProgrammaticInstructionsModal: ({ show, title, onClose, pythonNotes, pythonCode, rNotes, rCode, cliNotes, cliCode, helpMarkdown, helpUrl, }: ProgrammaticInstructionsModalProps) => React.ReactNode; export default ProgrammaticInstructionsModal; //# sourceMappingURL=ProgrammaticInstructionsModal.d.ts.map