import { IPSNumberEditor } from './ipsnumber-editor'; import { IPSTextEditor } from './ipstext-editor'; /** * * 继承父接口类型值[ARRAY,MOBARRAY] * @export * @interface IPSArray */ export interface IPSArray extends IPSTextEditor, IPSNumberEditor { /** * 数据类型[DATATYPE]{STRING|NUMBER|INTEGER|URL|IMAGE|MAIL} * @type {string} * @default STRING */ dataType: string; }