@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.
6 lines (5 loc) • 371 B
TypeScript
import React from 'react';
import { SelectInputProps, TimePickerInputProps } from '../../form';
import { TimePickerExtra, SelectExtra } from './interfaces';
export declare function getTimePickerExtra(timePicker: React.ReactElement<TimePickerInputProps>): TimePickerExtra;
export declare function getSelectExtra(select: React.ReactElement<SelectInputProps>): SelectExtra;