sn-controls-react
Version:
React controls for sensenet ECM
14 lines (13 loc) • 373 B
text/typescript
/**
* @module FieldControls
*
*/ /** */
import { IClientFieldSetting } from './IClientFieldSetting'
/**
* Interface for LongTextFieldSetting properties
*/
export interface ILongTextFieldSetting extends IClientFieldSetting {
'data-maxLength'?: number,
'data-minLength'?: number,
'data-textType': 'LongText' | 'RichText' | 'AdvancedRichText'
}