@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
9 lines (8 loc) • 375 B
TypeScript
import React from 'react';
import { UploadProps } from '../../ui/Upload/interfaces';
import { FormItemProps } from '../Item';
import { InputComponentWithName } from '../interfaces';
export declare type FilePictureInputProps = FormItemProps & {
name: string;
} & UploadProps;
export declare const FilePictureInput: InputComponentWithName<React.FC<FilePictureInputProps>>;