shineout
Version:
A components library for React
8 lines (7 loc) • 360 B
TypeScript
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']>;