sn-controls-react
Version:
React controls for sensenet ECM
14 lines (13 loc) • 336 B
text/typescript
/**
* @module FieldControls
*
*/ /** */
import { IClientFieldSetting } from '../IClientFieldSetting'
/**
* Interface for ShortTextFieldSetting properties
*/
export interface IShortTextFieldSetting extends IClientFieldSetting {
'data-maxLength'?: number,
'data-minLength'?: number,
'data-regex'?: string
}