synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
10 lines (9 loc) • 525 B
TypeScript
import React from 'react';
import { EvaluationRoundLimitInput } from '../input_models/models';
export declare type EvaluationRoundLimitOptionsListProps = {
limitInputs: EvaluationRoundLimitInput[];
handleChange: (index: number) => (limitInput: EvaluationRoundLimitInput) => void;
handleDeleteLimit: (index: number) => () => void;
onAddNewLimit: (limit: EvaluationRoundLimitInput) => void;
};
export declare const EvaluationRoundLimitOptionsList: React.FunctionComponent<EvaluationRoundLimitOptionsListProps>;