@fakel/rest-admin
Version:
An application that makes it easier to work with your API
12 lines (11 loc) • 396 B
TypeScript
import React from 'react';
import { InputProps } from './Input';
import { AntFieldProps } from '../../@types';
import 'ace-builds/src-noconflict/mode-html';
import 'ace-builds/src-noconflict/theme-monokai';
interface InputFieldProps extends InputProps {
label?: string;
placeholder?: string;
}
declare const CodeInput: React.FC<InputFieldProps & AntFieldProps>;
export default CodeInput;