import { IPSSysImage } from '../res/ipssys-image'; import { IPSModelObject } from '../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSImageBase */ export interface IPSImageBase extends IPSModelObject { /** * 提示信息 * @type {string} */ alternativeText: string; /** * 适配模式 * @type {string} */ fitMode: string; /** * 系统图片资源 * * @type {IPSSysImage} */ getPSSysImage(): IPSSysImage | null; /** * 系统图片资源 * * @type {IPSSysImage} */ get psSysImage(): IPSSysImage | null; /** * 系统图片资源(必须存在) * * @type {IPSSysImage} */ getPSSysImageMust(): IPSSysImage; /** * 中间放置 * @type {boolean} * @default false */ placeCenter: boolean; } //# sourceMappingURL=ipsimage-base.d.ts.map