UNPKG

shineout

Version:

A components library for React

8 lines (7 loc) 360 B
import { EditableAreaProps as UnStyledEditableAreaProps } from '@sheinx/base'; import { GetWithFieldProps } from '../hooks/use-field-common'; export type BaseEditableAreaProps = Omit<UnStyledEditableAreaProps, 'jssStyle'>; /** * @title EditableArea */ export type EditableAreaProps = GetWithFieldProps<BaseEditableAreaProps, BaseEditableAreaProps['value']>;