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