@fakel/rest-admin
Version:
An application that makes it easier to work with your API
11 lines (10 loc) • 361 B
TypeScript
import React from 'react';
import { AntFieldProps } from '../../@types';
import { InputProps } from './Input';
interface AutoCompleteInputProps extends InputProps {
valuePropName: string;
titlePropName: string;
reference: string;
}
declare const AutoCompleteInput: React.FC<AutoCompleteInputProps & AntFieldProps>;
export default AutoCompleteInput;