@fakel/rest-admin
Version:
An application that makes it easier to work with your API
16 lines (15 loc) • 655 B
TypeScript
import React from 'react';
import { ArrayHelpers } from 'formik';
declare type InputsIteratorActionsProps = {
direction?: 'horizontal' | 'vertical';
arrayHelpers: ArrayHelpers;
index: number;
disabledUpArrow?: boolean;
disabledDownArrow?: boolean;
addButton?: (arrayHelpers: ArrayHelpers) => React.ReactNode;
removeButton?: (arrayHelpers: ArrayHelpers) => React.ReactNode;
moveUpButton?: (arrayHelpers: ArrayHelpers) => React.ReactNode;
moveDownButton?: (arrayHelpers: ArrayHelpers) => React.ReactNode;
};
declare const InputsIteratorActions: React.FC<InputsIteratorActionsProps>;
export default InputsIteratorActions;