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

17 lines (16 loc) 649 B
import { EvaluationRound, EvaluationRoundLimitType } from '../../../utils/synapseTypes/Evaluation'; export declare type EvaluationRoundLimitInput = { readonly type: EvaluationRoundLimitType; readonly maxSubmissionString: string; }; export declare type EvaluationRoundInput = { evaluationId: string; reactListKey: string; id?: string; etag?: string; roundStart: string; roundEnd: string; totalSubmissionLimit: string; otherLimits: EvaluationRoundLimitInput[]; }; export declare const convertEvaluationRoundToInput: (evaluationRound: EvaluationRound, reactListKey?: string | undefined) => EvaluationRoundInput;