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 650 B
import { EvaluationRound, EvaluationRoundLimitType } from '@sage-bionetworks/synapse-types'; export type EvaluationRoundLimitInput = { readonly type: EvaluationRoundLimitType; readonly maxSubmissionString: string; }; export 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) => EvaluationRoundInput; //# sourceMappingURL=models.d.ts.map