UNPKG

synapse-react-client

Version:

[![Build Status](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client.svg?branch=main)](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synaps

18 lines (17 loc) 531 B
/// <reference types="react" /> import { Step } from './types'; export interface NavButtonsProps { isWizardMode?: boolean; previousStepIds: string[]; onNavAction: Function; steps: Step[]; currentStep: Step; isFormSubmitted?: boolean; } export interface NextStepLinkProps { onNavAction: Function; steps: Step[]; nextStepId: string | undefined; } export declare function NavButtons(props: NavButtonsProps): JSX.Element; export declare function NextStepLink(props: NextStepLinkProps): JSX.Element;